react-native-picker-dropdown icon indicating copy to clipboard operation
react-native-picker-dropdown copied to clipboard

Design bug in iOS

Open Cuupom opened this issue 4 years ago • 0 comments

There is this bug when implementing it in iOS. On Android it works fine. My code: <View style={{ margin: "2%", overflow: 'visible' }}> <DropDownPicker items={[ { label: "Seleccionar Opciones", value: "op", icon: () => <Feather name="list" size={24} color={Violeta} />, }, { label: "2 Personas", value: "2", icon: () => <Feather name="user" size={24} color={Violeta} />, }, { label: "3 Personas", value: "3", icon: () => <Feather name="user" size={24} color={Violeta} />, }, ]} defaultValue={state.country} containerStyle={{ height: 40 }} style={styles.Lista} itemStyle={{ justifyContent: "flex-start", }} dropDownStyle={{ backgroundColor: "#fafafa" }} onChangeItem={(item) => setState({ country: item.value, }) } arrowColor={blueDark} arrowSize={18} selectedLabelStyle={{ color: blueDark, fontWeight: "bold", }} /> </View> Captura de Pantalla 2021-02-02 a la(s) 11 25 55

Cuupom avatar Feb 02 '21 16:02 Cuupom