글쓰는 개발자

react-native WebView hide parent view 본문

Development/App

react-native WebView hide parent view

세가사 2019. 1. 18. 05:30
반응형

 

Sometimes webview component hide parent view after loading.

 

When it happens cover webview with the view with overflow hidden.

 

 <View style={{flex: 1, overflow: 'hidden'}}> <WebView source={{ uri }} /> </View>

 

반응형