Fix statusbar padding on Android in NotificationBar component

parent 55f91593
......@@ -5,6 +5,7 @@ import {
View,
SafeAreaView,
ViewPropTypes,
Platform,
} from 'react-native';
import PropTypes from 'prop-types';
import { SmallPillButton } from './button';
......@@ -20,6 +21,7 @@ import { color, font } from './style';
const barStyles = StyleSheet.create({
safe: {
backgroundColor: color.blackDark,
paddingTop: Platform.OS === 'android' ? 25 : 0,
},
bar: {
alignSelf: 'stretch',
......
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