Fix placeholder for Select

This commit is contained in:
Brandon Presley 2022-11-16 14:32:47 +13:00
parent 16668a80a5
commit ae842e0ad7
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ export default function Select({
<RNPickerSelect
style={{
placeholder: {
color: 'white',
color: colors.primary,
},
}}
placeholder="Hello, world!"
value={value}
placeholder={{label: 'Select...'}}
onValueChange={onChange}
items={items}
/>