expo-datepicker
TypeScript icon, indicating that this package has built-in type declarations

1.0.23 • Public • Published

expo-datepicker

Build Status

expo-datepicker is a beautiful and simple datepicker for react native and expo

DEMO

Installation

npm i expo-datepicker
yarn add expo-datepicker

Example

import React, { useState } from "react";
import { StyleSheet, Text, View, ViewStyle } from "react-native";
import DatePicker from "expo-datepicker";
import { Entypo } from "@expo/vector-icons";
export default function App() {
  const [date, setDate] = useState(new Date().toString());

  return (
    <View style={styles.container}>
      <DatePicker
        date={date}
        onChange={(date) => setDate(date)}
        icon={<Entypo name="chevron-right" size={40} color="#689CA3" />}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
});

Properties

Property Description
date Current date selected
icon Icon
fontStyle Input text style
containerStyle Container Style
backgroundColor Input background color
borderColor Change border color
inputDayStyle Change style day input
inputMonthStyle Change Style month input
inputYearStyle Change style year input
inputStyle Change style of all input
itemStyleModal Change style item modal
modalBackgroundColor Change modal background
selectedColor Change color item modal
selectedTextColor Change text color item
textStyleModal Change text style item

Events

Property Description
onChange (date:string)=>void

License

MIT

Free Software, Hell Yeah!

Package Sidebar

Install

npm i expo-datepicker

Weekly Downloads

36

Version

1.0.23

License

MIT

Unpacked Size

39.5 kB

Total Files

38

Last publish

Collaborators

  • stealkiller