The value of the picker does not change if I select another value from itIt just happened when I added onValueChangeI would be happy to help with this
const [eventType, setEventType] = useState<any>();<Picker onValueChange={(itemValue, itemIndex) => { setEventType(itemValue) }} dropdownIconColor='black' mode="dropdown"> {stateList.map(option => <Picker.Item label={option.label} key={option.key} value={option.value} />)}</Picker>