Open PatriciaRomaniuc opened 9 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) => ( ))} `
{hours.map((hour) => (
))} `
relevant style: picker: { flex: 1, }, textPicker: { color: Colors.White, fontSize: 23, },
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.
same issue
My code: `<PickerIOS style={[styles.picker]} itemStyle={styles.textPicker} selectedValue={hour} onValueChange={(itemValue, itemIndex) => { onTimeChange({ hour: itemValue.toString(), minute, format, }); }}
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.