-
Notifications
You must be signed in to change notification settings - Fork 786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
will not render for React Native 37 #92
Comments
Which version of the picker? 3 or 4? 3 isn't showing up for me. |
Android, version 4+ of the picker. |
So there is a breaking change to RN36 that has to do with changing |
I went back to RN 0.32 and 4.10 of the picker I have something like this: <Picker |
Use like this import Picker from 'react-native-picker';
let data = [];
for(var i=0;i<100;i++){
data.push(i);
}
Picker.init({
pickerData: data,
selectedValue: [59],
onPickerConfirm: data => {
console.log(data);
},
onPickerCancel: data => {
console.log(data);
},
onPickerSelect: data => {
console.log(data);
}
});
Picker.show(); |
I'm pretty sure you're not on 4.10, it's a completely different implementation just like mentioned above |
ok i got 4.10 working. But how do you have multiple pickers? import Picker1 from 'react-native-picker'; Picker1.init({}); Picker1.show(); Is that right? |
Read README.md |
…l request beefe#92) Added blur in consultationFormStep2Screen * Added blur in consultationFormStep2Screen * Added blur to ConsultaionFormStep4Screen * Replaced onShow to onFocus * restore cancel button style and rename _blur to _blurAllTextFields * Added extend onCancel touchable screen by "git+https://github.com/Clintal/mkp-react-native-picker.git#dismiss-modal"
It just blows up in render.
The text was updated successfully, but these errors were encountered: