Skip to content

Tag: react-native

FlatList not scrolling

i have created a screen where I display a component that contains a FlatList. For some reason I can’t scroll through the list. Someone who can spot my mistake and point me in the right direction? render-function and style from my screen file: render function and style from my listitem component: render …

Checking if a state object is empty

I have a react js state object and would like to execute some code if the object is empty. Is there something wrong with my logic because the code inside the if block is not getting executed. Answer Given that this.state.errors is an object you can do this, Object.keys will return an array or all the keys fro…