We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, the PickerColumn`s 'selectedValue' prop error is no more than the 24th serial number. such as:
const [list, setList] = useState([ {label: '1', value: 1}, {label: '2', value: 2}, ... {label: '29', value: 29}, {label: '30', value: 30}, ]) const [defaultValue, setDefaultValue] = useState(29)
' <PickerColumn selectedValue={defaultValue} onChange={obj=> setDefaultValue({value})}> {list.map((item, index) => ( ))} </ Picker >
'
but, the initialized view result show '24'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, the PickerColumn`s 'selectedValue' prop error is no more than the 24th serial number. such as:
const [list, setList] = useState([
{label: '1', value: 1},
{label: '2', value: 2},
...
{label: '29', value: 29},
{label: '30', value: 30},
])
const [defaultValue, setDefaultValue] = useState(29)
'
<PickerColumn
selectedValue={defaultValue}
onChange={obj=> setDefaultValue({value})}>
{list.map((item, index) => (
))}
</ Picker >
'
but, the initialized view result show '24'
The text was updated successfully, but these errors were encountered: