picker icon indicating copy to clipboard operation
picker copied to clipboard

Picker doesn't select value unless I scroll

Open aziyatali opened this issue 2 years ago • 0 comments

Picker version: "@react-native-picker/picker": "^2.4.10", React-Native version: "react-native": "0.70.7",

Brief: when I click it and modal appears, then if user wants to select the first option then it won't pick unless they scroll. Seem onChangeEvent doesn't get triggered for the first option. Any help is appreciated.

Here I demonstrated how it is happening.

https://github.com/react-native-picker/picker/assets/46732700/d9921a76-9043-480b-9197-efdba634072f

Here is the code:

<View style={styles.modalView}>
            <Picker
              selectedValue={selectedGender}
              style={styles.textInput}
              onValueChange={itemValue => setSelectedGender(itemValue)}>
              <Picker.Item label={''} value={''} />
              <Picker.Item label={'남성'} value={'남성'} />
              <Picker.Item label={'여성'} value={'여성'} />
            </Picker>
          </View>

aziyatali avatar Jun 29 '23 02:06 aziyatali