1.0.8 • Published 2 years ago

react-native-simple-date v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-simple-date

Build Status

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

DEMO

Installation

npm i react-native-simple-date
yarn add react-native-simple-date

Example

import React, { useState } from 'react';
import { StyleSheet, Text, View,ViewStyle } from 'react-native';
import DatePicker from 'react-native-simple-date'
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

PropertyDescription
dateCurrent date selected
iconIcon
fontStyleInput text style
containerStyleContainer Style

Events

PropertyDescription
onChange(date:string)=>void

License

MIT

Free Software, Hell Yeah!