Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ npm-debug.*
*.mobileprovision
*.orig.*
web-build/
.vs/

# macOS
.DS_Store
Expand Down
4 changes: 2 additions & 2 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
import AppStack from './src/routes/AppStack';
import { StatusBar } from 'expo-status-bar';

export default function App() {
export default function App(): any {
const [fontsLoaded] = useFonts({
Nunito_400Regular,
Nunito_600SemiBold,
Expand All @@ -25,7 +25,7 @@ export default function App() {
} else {
return (
<>
<StatusBar animated translucent style="dark" />
<StatusBar animated translucent style="Dark" />
<ActionSheetProvider>
<AppStack />
</ActionSheetProvider>
Expand Down