Commit 62473bc2 authored by Tankred Hase's avatar Tankred Hase

Disable change of status bar update in dropdown

parent e882fd0a
......@@ -89,6 +89,7 @@ const wrapperStyles = StyleSheet.create({
export const ContentWrapper = ({ children, style }) => (
<SafeAreaView style={wrapperStyles.safe}>
<StatusBar barStyle="light-content" />
<KeyboardAvoidingView
style={[wrapperStyles.avoid, style]}
behavior="padding"
......
......@@ -41,7 +41,6 @@ const styles = StyleSheet.create({
const NotificationWrapper = ({ store, notify, children }) => (
<View style={styles.wrapper}>
<StatusBar barStyle="light-content" />
{children}
<DropdownAlert
ref={ref => notify.setDropdown(ref)}
......@@ -57,6 +56,7 @@ const NotificationWrapper = ({ store, notify, children }) => (
renderCancel={() => <SmallSpinner style={styles.spinner} />}
closeInterval={NOTIFICATION_DELAY}
replaceEnabled={false}
updateStatusBar={false}
/>
{(store.lastNotification || {}).waiting ? <KeepAwake /> : null}
</View>
......
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