JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 446
  • Score
    100M100P100Q90189F
  • License MIT

Simple date picker

Package Exports

  • expo-datepicker
  • expo-datepicker/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (expo-datepicker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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

Property Description
date Current date selected
icon Icon
fontStyle Input text style
containerStyle Container Style

Events

Property Description
onChange (date:string)=>void

License

MIT

Free Software, Hell Yeah!