Sélim
Sélim
One workaround is to set a timeout before state change: ```js const [selectedIndex, setSelectedIndex] = useState(0); return ( { const index = event.nativeEvent.selectedSegmentIndex; setTimeout(() => { setSelectedIndex(index); }, 200); }}...
I fixed it with a fresh build using exact version matching ``` "@react-native-firebase/app": "18.8.0", "@react-native-firebase/app-check": "18.8.0", "@react-native-firebase/auth": "18.8.0", "@react-native-firebase/crashlytics": "18.8.0", ``` Previous build was on "^18.8.0", which must have used...