Browse 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 5 years ago
parent
commit
5ec74ea9bb
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      src/WebView.styles.ts

+ 0
- 1
src/WebView.styles.ts View File

15
   container: {
15
   container: {
16
     flex: 1,
16
     flex: 1,
17
     overflow: 'hidden',
17
     overflow: 'hidden',
18
-    backgroundColor: 'white',
19
   },
18
   },
20
   errorContainer: {
19
   errorContainer: {
21
     flex: 1,
20
     flex: 1,