Kaosc
Kaosc
Instead of deleting the previous file and creating a new one, create a new named file each time. like adding random numbers at the end of the file name. You...
I may guess its a flipper issue. Upgrading flipper in gradle.properties fixses the issue. ``` properties FLIPPER_VERSION=0.144.0 ```
> Add the `index` into the `keyExtractor` worked for me. > > ``` > const keyExtractor = useCallback((item: any, index: number) => `${item.id}-${index}`, []); > > keyExtractor={keyExtractor} > ...otherProps >...