Fix statusbar padding on Android in Background component

parent 0e1ba565
......@@ -5,6 +5,7 @@ import {
SafeAreaView,
KeyboardAvoidingView,
ViewPropTypes,
Platform,
} from 'react-native';
import PropTypes from 'prop-types';
import BackgroundImage from './background-image';
......@@ -78,6 +79,7 @@ SplitBackground.propTypes = {
const wrapperStyles = StyleSheet.create({
safe: {
flex: 1,
paddingTop: Platform.OS === 'android' ? 25 : 0,
},
avoid: {
flex: 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment