From a1639b67a581fcfdb03ab7dc9b5960281c07315c Mon Sep 17 00:00:00 2001 From: Lyubomir Marinov Date: Wed, 30 Nov 2016 10:00:59 -0600 Subject: [PATCH] [RN] Don't display background colors underneath text on WelcomePage --- react/features/welcome/components/styles.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/react/features/welcome/components/styles.js b/react/features/welcome/components/styles.js index 46f564bdd..3bf17f57b 100644 --- a/react/features/welcome/components/styles.js +++ b/react/features/welcome/components/styles.js @@ -66,6 +66,13 @@ export const styles = createStyleSheet({ * thought of as the foreground (content) of WelcomePage. */ localVideoOverlay: { + // Since (1) the top-level container of WelcomePage is not transparent + // and, more importantly, (2) this View is displayed over the local + // video, this View would better not have a background color. + // Otherwise, Views within this View will inherit its background color + // and Text, for example, will display non-transparent rectangles over + // the local video. + backgroundColor: 'transparent', bottom: 0, flex: 1, flexDirection: 'column',