Giter Site home page Giter Site logo

0reo / react-native-ui-datepicker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from farhoudshapouran/react-native-ui-datepicker

0.0 0.0 0.0 5.57 MB

Customizable React Native ๐Ÿ“… DatePicker component for Android, iOS, and Web. It includes single, range and multiple modes and supports different locales.

Home Page: https://farhoudshapouran.github.io/react-native-ui-datepicker/

License: MIT License

JavaScript 3.41% TypeScript 96.59%

react-native-ui-datepicker's Introduction

react-native-ui-datepicker


react-native-ui-datepicker

styled with prettier license

DateTimePicker component for React Native that allows you to create a customizable date and time picker. The component uses Day.js library and it contains a set of style props that allows you to change every item of calendar based on your own UI design. Please visit demo.

Installation

npm install react-native-ui-datepicker

Or

yarn add react-native-ui-datepicker

Usage

import DateTimePicker from 'react-native-ui-datepicker';
import dayjs from 'dayjs';

export default function App() {
  const [date, setDate] = useState(dayjs());

  return (
    <View style={styles.container}>
      <DateTimePicker
        mode="single"
        date={date}
        onChange={(params) => setDate(params.date)}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#F5FCFF',
  },
});

For more, take a look at the /example directory.

react-native-ui-datepicker-styles

Calendar props

Name Type Default Description
mode string 'single' Defines the DatePicker mode ['single', 'range', 'multiple']
locale string 'en' Defines the DatePicker locale
minDate DateType null Defines DatePicker minimum selectable date
maxDate DateType null Defines DatePicker maximum selectable date
firstDayOfWeek number 0 Defines the starting day of week, number 0-6, 0 - Sunday, 6 - Saturday
displayFullDays boolean false Defines show previous and next month's days in the current calendar view
initialView string 'day' Defines the DatePicker initial view ['day', 'month', 'year', 'time']
height number 'undefined' Defines the Calendar view heights

Single Mode props

Name Type Default Description
date DateType undefined Date value to display selected date
onChange Function ({date}) => {} Called when the new date selected from DatePicker
timePicker boolean false Defines show or hide time picker

Range Mode props

Name Type Default Description
startDate DateType undefined Start date value to display selected start date
endDate DateType undefined End date value to display selected end date
onChange Function ({startDate, endDate}) => {} Called when the new start or end date selected from DatePicker

Multiple Mode props

Name Type Default Description
dates DateType[] [] Dates array to display selected dates
onChange Function ({dates}) => {} Called when the new dates selected from DatePicker

Styling props

Name Type Default Description
calendarTextStyle TextStyle null Defines all text styles inside the calendar (Days, Months, Years, Hours, and Minutes)
selectedTextStyle TextStyle null Defines selected (Day, Month, Year) text styles
selectedItemColor string '#0047FF' Defines selected (Day, Month, Year) background and border colors
headerContainerStyle ViewStyle null Defines calendar header container style
headerTextContainerStyle ViewStyle null Defines calendar header texts (Month, Year, Time) containers style
headerTextStyle TextStyle null Defines calendar header text styles (Month, Year, Time)
headerButtonStyle ViewStyle null Defines calendar header "prev and next buttons" containers style
headerButtonColor string null Defines calendar header "prev and next buttons" icon color
headerButtonSize number 18 Defines calendar header "prev and next buttons" icon size
headerButtonsPosition string 'around' Defines calendar header "prev and next buttons" positions ['around', 'right', 'left']
buttonPrevIcon ReactNode undefined Defines calendar header "prev button" custom icon
buttonNextIcon ReactNode undefined Defines calendar header "next button" custom icon
dayContainerStyle ViewStyle null Defines days containers style
todayContainerStyle ViewStyle null Defines today container style
todayTextStyle TextStyle null Defines today text style
monthContainerStyle ViewStyle null Defines months containers style
yearContainerStyle ViewStyle null Defines years containers style
weekDaysContainerStyle ViewStyle null Defines weekdays container style
weekDaysTextStyle TextStyle null Defines weekdays texts style
timePickerContainerStyle ViewStyle null Defines time picker container style
timePickerTextStyle TextStyle null Defines time picker (Hours, Minutes) texts style
timePickerIndicatorStyle ViewStyle null Defines selected time indicator style
timePickerDecelerationRate 'normal', 'fast', number 'fast' Defines how quickly the underlying scroll view decelerates after the user lifts their finger.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

Consider supporting with a โญ๏ธ Star on GitHub

If you are using the library in one of your projects, please consider supporting it with a star.

License

MIT

react-native-ui-datepicker's People

Contributors

farhoudshapouran avatar dependabot[bot] avatar sebimarkgraf avatar hector-chong avatar herrspeck avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.