1.0.1 • Published 7 years ago
react-native-duration-picker v1.0.1
react-native-duration-picker
Getting started
$ npm install react-native-duration-picker --save
Mostly automatic installation
$ react-native link react-native-duration-picker
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-duration-pickerand addRNDurationPicker.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNDurationPicker.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.westagilelabs.durationpicker.RNDurationPickerPackage;to the imports at the top of the file - Add
new RNDurationPickerPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-duration-picker' project(':react-native-duration-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-duration-picker/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-duration-picker')
Usage
import RNDurationPicker from 'react-native-duration-picker';
RNDurationPicker.open({
hour: 3,
minute: 16,
interval: 1,
title: 'Austin'
}).then(result => {
if (result.action === 'setAction') {
const duration = (result.hour * 60 * 60) + (result.minute * 60);
setTimeout(() => alert(duration), 1000)
}
});