How to make a choice on React Native?

With React Native, I want to make a choice.

Right now, with PickerIOS, I have something similar to this:

Picker1

As you can see, the collector displays a bunch of possible values, although I just want it to display.

I try to make it more similar, so it only displays the selected value (if you do not touch it, in which case it is selected from the bottom):

Picker2

What can I do?

+4
source share
2 answers

React Native List Popover may work for you.

enter image description here

+1
source

Maybe you can try React Native FMPicker , which mimics the picker in the second screenshot

+3
source

All Articles