Browse Source

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

zhangchao 4 years ago
parent
commit
ce2b80f9cc
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      autoHeightWebView/index.js

+ 2
- 2
autoHeightWebView/index.js View File

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