Add actionButton

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-09 19:35:29 +03:00
parent 5c6d26e5a0
commit f483bf4430
2 changed files with 56 additions and 3 deletions

View File

@@ -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>