diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Splash.tsx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Splash.tsx b/src/Splash.tsx index 0ddb0520d..4b480b7a4 100644 --- a/src/Splash.tsx +++ b/src/Splash.tsx @@ -140,20 +140,13 @@ export function Splash(props: React.PropsWithChildren<Props>) { {platformApiLevel && platformApiLevel <= 25 ? ( // Use a simple fade on older versions of android (work around a bug) <> - {!isAnimationComplete && ( - <View - style={[ - StyleSheet.absoluteFillObject, - {backgroundColor: 'white'}, - ]} - /> - )} <Animated.View style={[{flex: 1}, appAnimation]}> {props.children} </Animated.View> </> ) : ( <MaskedView + androidRenderingMode="software" style={[StyleSheet.absoluteFillObject]} maskElement={ <Animated.View |