diff options
Diffstat (limited to 'src/components/onboarding/Background.tsx')
-rw-r--r-- | src/components/onboarding/Background.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/onboarding/Background.tsx b/src/components/onboarding/Background.tsx index 85675b0d..054eeff6 100644 --- a/src/components/onboarding/Background.tsx +++ b/src/components/onboarding/Background.tsx @@ -5,7 +5,7 @@ import { TouchableWithoutFeedback, Keyboard, ViewProps, - View, + SafeAreaView, } from 'react-native'; import {CenteredView} from '../common'; @@ -24,7 +24,7 @@ const Background: React.FC<BackgroundProps> = (props) => { {props.centered ? ( <CenteredView {...props}>{props.children}</CenteredView> ) : ( - <View {...props}>{props.children}</View> + <SafeAreaView {...props}>{props.children}</SafeAreaView> )} </TouchableWithoutFeedback> </LinearGradient> |