react-native-duration-picker

Duration picker for React Native

Usage no npm install needed!

<script type="module">
  import reactNativeDurationPicker from 'https://cdn.skypack.dev/react-native-duration-picker';
</script>

README

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

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-duration-picker and add RNDurationPicker.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNDurationPicker.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. 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 the getPackages() method
  1. 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')
    
  2. 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)
    }
});