Skip to content Skip to sidebar Skip to footer

React Native Listview Selected Styling

What I have I have a listview in react native that is hydrating from firebase. I display this listview, and when I touch the desired row, it sends the data back to the parent where

Solution 1:

The trick is you need to re-render your entire data source for the list view. Unfortunately just simply updating the state of the component doesn't make the list view re-evaluate the rows therein. See the following for a bit more info:

How to change a ListView Item as Marked In React-Native

Post a Comment for "React Native Listview Selected Styling"