react-native-input-picker
Getting started
$ npm install react-native-input-picker --save
Mostly automatic installation
$ react-native link react-native-input-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-input-picker
and addRNReactNativeInputPicker.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNReactNativeInputPicker.a
to 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.reactlibrary.RNReactNativeInputPickerPackage;
to the imports at the top of the file - Add
new RNReactNativeInputPickerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-input-picker' project(':react-native-input-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-input-picker/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-input-picker')
Windows
- In Visual Studio add the
RNReactNativeInputPicker.sln
innode_modules/react-native-input-picker/windows/RNReactNativeInputPicker.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Cl.Json.RNReactNativeInputPicker;
to the usings at the top of the file - Add
new RNReactNativeInputPickerPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
; // TODO: What do with the module? { superprops; thisstate = items: name: 'Item 1' name: 'Item 2' name: 'Item 3' openModal: false value: 'Item 1' ; } { this; } { this; } { return thisstateitems; } { return ...... <TextInput placeholder="Item" keyboardType="default" onFocus= this placeholderTextColor="#FFFFFF" style=stylesinput value=thisstatevalue /> <CustomPicker items=this openModal=true hideModal=thishideModal style=stylesselectOptions iosHeader="Select one" mode="dropdown" selectedValue=thisstatevalue onValueChange= this /> ...... }