react-native-modal-selector
react-native-modal-selector copied to clipboard
Optionally show cancel button
Proposal: A showCancelButton prop that is used in renderOption() to optionally display the cancel button. (Ario-Inc have implemented something like this)
Would like to have this too.
Current I'm using this:
cancelStyle: {
display: 'none'
},
Alternatively, the prop cancelContainerStyle might help in this case. Pass it {height: 0, overflow: 'hidden'} (not sure if overflow is necessary, including it just in case).
PRs are welcome