diff --git a/src/component/notification-wrapper.js b/src/component/notification-wrapper.js index 4abc70fed..0bea1b46f 100644 --- a/src/component/notification-wrapper.js +++ b/src/component/notification-wrapper.js @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View } from 'react-native'; +import { StyleSheet, View, Platform, StatusBar } from 'react-native'; import { observer } from 'mobx-react'; import PropTypes from 'prop-types'; import DropdownAlert from 'react-native-dropdownalert'; @@ -18,6 +18,7 @@ const styles = StyleSheet.create({ }, dropdown: { backgroundColor: color.blackDark, + paddingTop: Platform.OS === 'android' ? StatusBar.currentHeight + 5 : 0, }, text: { fontFamily: 'OpenSans Regular',