Ingyu Tae

Results 11 comments of Ingyu Tae

``` js const waitForNetwork0 = async (page, timeout = 500) => { await new Promise((resolve) => { let timer; page.on('response', () => { clearTimeout(timer); timer = setTimeout(resolve, timeout); }); });...

I have the same issue with 9.1.0 only if shape === 'image'

I don't even need `layout` prop. Just adding `Animated.View` on the screen causes the issue. It gets worse when using `ScrollView` and `TextInput` together. (flickering) ![CleanShot 2022-08-23 at 16 32...

try https://github.com/ds300/patch-package

here's my workaround using custom hook ```typescript import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { useNavigation } from '@react-navigation/native'; import { nestedNavigationProp, stackNavigationProp } from '../app/rootNavigation'; const useSafeArea = ()...

`defaultValue` doesn't solve the problem. If you want to mask user inputs and show user masked inputs, still have to use value prop.

> (or specify `detachInactiveScreens` to `false` https://reactnavigation.org/docs/stack-navigator#detachinactivescreens) `detachInactiveScreens` to `false` solves the problem though what was the cause?

> After upgrading to expo v46 and `react-native-pager-view` to `5.4.24` issue is solved. Here is a snack: https://snack.expo.dev/TGFrSAyUkq Are you using @react-navigation/stack or @react-navigation/native-stack?

@DevanshaniR Have you tried this? https://docs.swmansion.com/react-native-gesture-handler/docs/#android