react-native-picker / picker

Picker is a cross-platform UI component for selecting an item from a list of options.
MIT License
1.44k stars 273 forks source link

can't remove gray background on IOS picker #548

Open PatriciaRomaniuc opened 4 months ago

PatriciaRomaniuc commented 4 months ago

My code: `<PickerIOS style={[styles.picker]} itemStyle={styles.textPicker} selectedValue={hour} onValueChange={(itemValue, itemIndex) => { onTimeChange({ hour: itemValue.toString(), minute, format, }); }}

{hours.map((hour) => (

))} `

relevant style: picker: { flex: 1, }, textPicker: { color: Colors.White, fontSize: 23, },

I wanted to have a simple picker with just some lines, but can't remove the gray background. IMG_8054

gufengpiaoyi commented 3 months ago

same issue