diff --git a/react/features/conference/components/styles.js b/react/features/conference/components/styles.js index ae07436ef..d39a89031 100644 --- a/react/features/conference/components/styles.js +++ b/react/features/conference/components/styles.js @@ -18,6 +18,12 @@ export const styles = createStyleSheet({ conference: { alignSelf: 'stretch', backgroundColor: ColorPalette.appBackground, + + // XXX These properties are a workaround for Android views clipping, + // RN doesn't properly blit our overlays on top of video views. + borderColor: ColorPalette.appBackground, + borderWidth: 0.2, + flex: 1 }, diff --git a/react/features/welcome/components/styles.js b/react/features/welcome/components/styles.js index 4ea5f7949..421fa46ee 100644 --- a/react/features/welcome/components/styles.js +++ b/react/features/welcome/components/styles.js @@ -38,6 +38,12 @@ export const styles = createStyleSheet({ container: { alignSelf: 'stretch', backgroundColor: ColorPalette.blue, + + // XXX These properties are a workaround for Android views clipping, + // RN doesn't properly blit our overlays on top of video views. + borderColor: ColorPalette.appBackground, + borderWidth: 0.2, + flex: 1 },