Parcourir la source

fix(styles): Removes hard-coded container white backgroundColor (#478)

Fixes #475

#472 added a `backgroundColor` of `white` to the `container` style which broke the ability to set a `transparent` background color on the `WebView` component. This simply removes that unnecessary style.
Max Schmeling il y a 5 ans
Parent
révision
5ec74ea9bb
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0
    1
      src/WebView.styles.ts

+ 0
- 1
src/WebView.styles.ts Voir le fichier

@@ -15,7 +15,6 @@ const styles = StyleSheet.create<Styles>({
15 15
   container: {
16 16
     flex: 1,
17 17
     overflow: 'hidden',
18
-    backgroundColor: 'white',
19 18
   },
20 19
   errorContainer: {
21 20
     flex: 1,