picker
picker copied to clipboard
how can i set the background color to transparent
Version: 1.14.0 Code:
<Picker selectedValue={hours} onValueChange={handleHourChanged} itemStyle={{ textAlign: "center", }} > //PickerItems {hour.map(v => { return <Picker.Item label={v.toString()} value={v} />; })} </Picker>
Actual Screenshot:

Expected:

I have the same request
Also, if it's possible to add possibility to change borderRadius.
@rusakovic Did you find a solution for applying a border radius?
@IshaTyagi you ever find a workaround for this?
If any of you find a solution let me know
+1
Also trying to get this sort of view, even the example and the iOS Picker doesn't seem to work
Try setting the selectionColor prop to something like #ffffff10.
Like this
selectionColor="rgba(0, 0, 0, 0.3)"
Same request for both transparent background and border radius manipulation please.