picker icon indicating copy to clipboard operation
picker copied to clipboard

can't remove gray background on IOS picker

Open PatriciaRomaniuc opened this issue 1 year ago • 1 comments

My code: <PickerIOS style={[styles.picker]} itemStyle={styles.textPicker} selectedValue={hour} onValueChange={(itemValue, itemIndex) => { onTimeChange({ hour: itemValue.toString(), minute, format, }); }} > {hours.map((hour) => ( <PickerIOS.Item key={hour} label={hour} value={hour} /> ))} </PickerIOS>

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

PatriciaRomaniuc avatar Feb 22 '24 15:02 PatriciaRomaniuc

same issue

gufengpiaoyi avatar Mar 27 '24 02:03 gufengpiaoyi