-
Notifications
You must be signed in to change notification settings - Fork 503
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
InputAccessoryView - Up and Down arrows are not working #482
Comments
Yea same problem, probably need to make a fork of this project to suit it for your needs... Or have you found another solution? |
We have hidden the up&down arrows as they are optional :) |
that's how the picker functions natively on the web - which this project tries to emulate |
how to hidden it? i tried some props but not succeed |
ok i found it
|
react-native-picker-select/src/index.js
Line 179 in ca6488c
If onDownArrow/onUpArrow prop was provided, the
this.onDownArrow
will be called which closes the selector options instead of moving the selected option up/down. This is happening as we are calling thethis.togglePicker(false, <onDown/UPArrow>)
when we click on the Up/down arrows of InputAccessoryView. 'done' action is working fine as its purpose is to close the selection widget.The text was updated successfully, but these errors were encountered: