Я пытаюсь изменить модальный фон сборщика на другой цвет, по умолчанию он белый!
Я использую сборщик из "act-native & native-base ", но у меня никто не работает!
Так есть ли способ изменить его - с родного или RN?
Снимок экрана
Код
<View
style={{
felx: 1,
borderBottomWidth: 1,
borderBottomColor: '#ddd',
borderColor: '#f05',
borderWidth: 1,
backgroundColor: '#273137', // it's change the bg but not the modal bg as you see in screenshot
borderRadius: 4,
}}>
<Picker
style={{
height: 40,
width: undefined,
flex: 1,
backgroundColor: '#f00', // not work!
}}
mode="dialog" // OR dropdown not change bg color
selectedValue={values.gender}
onValueChange={itemValue =>
setFieldValue('gender', itemValue)
}>
<Picker.Item
color="#ddd"
label="gender"
value={null}
key={0}
/>
<Picker.Item label="male" value={1} key={1} />
<Picker.Item label="female" value={2} key={2} />
</Picker>
</View>