↧
Answer by Mukeyii for React native list of pickers doesn't refresh
Why do you slice arrays and read/update from them, if you need a single value? Use a second state attribute and connect with your component: state = {..., value: ''} ...handle change as follows:...
View ArticleReact native list of pickers doesn't refresh
I use React Native 0.55.4 and native-base 2.4.4. I want to display a list with pickers. <List dataArray={action.dates} renderRow={(date, _, rowID) => <ListItem> <Text>{rowID}...
View Article