Add actionButton
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -7,6 +7,7 @@ import { lightTheme, darkTheme } from './theme';
|
||||
import { Meme, Tag } from './database';
|
||||
import NavigationContainer from './navigation';
|
||||
import { SettingsProvider } from './contexts/settings';
|
||||
import ActionButton from './components/actionButton';
|
||||
|
||||
function App(): JSX.Element {
|
||||
const colorScheme = Appearance.getColorScheme();
|
||||
@@ -19,12 +20,11 @@ function App(): JSX.Element {
|
||||
<SettingsProvider>
|
||||
<SafeAreaProvider>
|
||||
<StatusBar
|
||||
barStyle={
|
||||
isDarkMode ? 'light-content' : 'dark-content'
|
||||
}
|
||||
barStyle={isDarkMode ? 'light-content' : 'dark-content'}
|
||||
backgroundColor={theme.colors.background}
|
||||
/>
|
||||
<NavigationContainer />
|
||||
<ActionButton />
|
||||
</SafeAreaProvider>
|
||||
</SettingsProvider>
|
||||
</PaperProvider>
|
||||
|
Reference in New Issue
Block a user