From 5ec74ea9bb93f04a90b0e8845d756496fceb6e9e Mon Sep 17 00:00:00 2001 From: Max Schmeling Date: Thu, 4 Apr 2019 12:44:01 -0500 Subject: [PATCH] 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. --- src/WebView.styles.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/WebView.styles.ts b/src/WebView.styles.ts index 8f5bbf0..4fc9a4d 100644 --- a/src/WebView.styles.ts +++ b/src/WebView.styles.ts @@ -15,7 +15,6 @@ const styles = StyleSheet.create({ container: { flex: 1, overflow: 'hidden', - backgroundColor: 'white', }, errorContainer: { flex: 1,