diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-10 11:22:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 11:22:48 -0500 |
commit | 18f7a890d13aad0bead329cece6c093e60609151 (patch) | |
tree | 880fe1b37a0895094312ebda933ae7f6497bd7cd /src/screens/main/NotificationsScreen.tsx | |
parent | c5e4bfbba73090b9fa3d422ddf31aaa915d032df (diff) | |
parent | 0d51e6f2b860a7bfe559284e9e3a10a7dd0e6e63 (diff) |
Merge branch 'master' into hotfix-header-refactor
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index f35bb22c..266ba3f9 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -5,6 +5,7 @@ import React, {useCallback, useEffect, useState} from 'react'; import { RefreshControl, SectionList, + StatusBar, StyleSheet, Text, View, @@ -146,6 +147,7 @@ const NotificationsScreen: React.FC = () => { return ( <SafeAreaView> + <StatusBar barStyle={'dark-content'} /> <View style={styles.header}> <Text style={styles.headerText}>Notifications</Text> <View style={styles.underline} /> |