We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbcdd72 commit ae94e50Copy full SHA for ae94e50
src/components/ui/focus-aware-status-bar.tsx
@@ -11,5 +11,10 @@ export const FocusAwareStatusBar = ({ hidden = false }: Props) => {
11
12
if (Platform.OS === 'web') return null;
13
14
- return isFocused ? <SystemBars style={colorScheme} hidden={hidden} /> : null;
+ return isFocused ? (
15
+ <SystemBars
16
+ style={colorScheme === 'light' ? 'dark' : 'light'}
17
+ hidden={hidden}
18
+ />
19
+ ) : null;
20
};
0 commit comments