1. 程式人生 > >解決ReactNative Webview載入時候白屏問題

解決ReactNative Webview載入時候白屏問題

需要使用一個View包裹Webview,並設定 overflow:'hidden'

參考 https://github.com/facebook/react-native/issues/21939

<View style={{ height: 150, width: 150 ,overflow:'hidden'}}>
            <WebView
              source={{ uri: 'https://github.com/facebook/react-native' }}
              scalesPageToFit={true}
            />