react-native-super-timepicker
Summary
A 24-hour format time picker which improves on react-native-24h-timepicker by:
- supporting
minHour
andmaxHour
(contribution by mindmind) - removing deprecated stuff like
componentWillReceiveProps
- updated dependencies to the latest stuff
Screenshot
Installation
npm i react-native-super-timepicker --save
or
yarn add react-native-super-timepicker
Example
import React Component from "react";import StyleSheet View TouchableOpacity Text from "react-native";import TimePicker from "react-native-super-timepicker"; { ; thisstate = time: "" ; } { thisTimePicker; } { this; thisTimePicker; } { return <View => <Text =>REACT NATIVE</Text> <Text =>24 HOURS FORMAT TIMEPICKER</Text> <TouchableOpacity = = > <Text =>TIMEPICKER</Text> </TouchableOpacity> <Text =>thisstatetime</Text> <TimePicker = = = /> </View> ; } const styles = StyleSheet; ;
Props
Prop | Type | Description | Default |
---|---|---|---|
minHour | number | Minimum of hour | 0 |
maxHour | number | Maximum of hour | 23 |
minMinute | number | Minimum of minute | 0 |
maxMinute | number | Maximum of minute | 59 |
hourInterval | number | The interval at which hours can be selected. | 1 |
minuteInterval | number | The interval at which minutes can be selected. | 1 |
hourUnit | string | Add extra text to hour (e.g. "hrs"). Include a space if you want a gap between the number and the text (e.g. " hrs" for "18 hrs") | "" |
hourUnitSingular | string | The first hour's extra text, if not hourUnit (e.g. "1 hr" vs "2 hrs") | "" |
minuteUnit | string | Add extra text to minute (e.g. "mins"). Include a space if you want a gap between the number and the text (e.g. " mins" for "4 mins") | "" |
minuteUnitSingular | string | The first minute's extra text, if not minuteUnit (e.g. "1 min" vs "2 mins") | "" |
selectedHour | string | Default hour | "0" |
selectedMinute | string | Default minute | "00" |
itemStyle | object | Item text style | {} |
textCancel | string | Cancel button text | Cancel |
textConfirm | string | Confirm button text | Confirm |
onCancel | function | Event on Cancel button | |
onConfirm | function | Event on Confirm button |
Methods
Method Name | Description |
---|---|
open | Open TimePicker |
close | Close TimePicker |
Note
Always set ref
to TimePicker
and call each method by using this.TimePicker.methodName()
like example above.
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Author
Made by Philip Su, with thanks to original author NYSamnang. Repo was forked to provide more active maintenance and to accept others' pull requests.