In my Applikation I render a Expo FlatList to show created Events. If the user has created or joined this event, he should be able to see the images. If not, they should be hidden. I would now store the creator and the guests in the database and would have to compare this with the currentUser from the Firebase Auth
Tag: react-native-flatlist
not able to wrap the components in reactnative
So i am making a custom multiple select component . when you click on the TextInput the dropdown will appear(the items in the dropdown comes from flatlist component) and from that drop down you can search the item you want to select and after selecting a tag will appear beside the input field. This selected tag is also comming from
Trouble on adding items to Flatlist, React Native
DIET (screen) export class Diet extends Component { constructor(props) { super(props); this.state = { foodList: [], }; } render() { return ( …