ソースを参照

修复设置右边距会出现黑条的bug

zhangchao 4 年 前
コミット
ce2b80f9cc
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2
    2
      autoHeightWebView/index.js

+ 2
- 2
autoHeightWebView/index.js ファイルの表示

@@ -67,10 +67,10 @@ const AutoHeightWebView = React.memo(
67 67
       [width, height, onSizeUpdated]
68 68
     );
69 69
     return (
70
-      <View style={[props.style, { height: height || 50 }]}>
70
+      <View style={[props.style, { height: height || 50, transform: [{ translateX: -1 }] }]}>
71 71
         <WebView
72 72
           {...props}
73
-          style={{}}
73
+          style={{ transform: [{ translateX: 1 }] }}
74 74
           ref={webView}
75 75
           onMessage={handleMessage}
76 76
           injectedJavaScript={script}