Skip to content

Commit

Permalink
navio.App
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Feb 24, 2023
1 parent d9b9f0d commit e4e9686
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/navio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export const navio = Navio.build({
options: () => ({
title: services.t.do('settings.title'),
tabBarIcon: getTabBarIcon('SettingsTab'),
tabBarBadge: 23,
}),
},
},
Expand All @@ -84,7 +85,12 @@ export const navio = Navio.build({
drawers: {
MainDrawer: {
content: {
Main: 'MainStack',
Main: {
stack: 'MainStack',
options: {
drawerType: 'front',
},
},
Example: 'ExampleStack',
Playground: ['Playground'],
},
Expand All @@ -106,4 +112,4 @@ export const navio = Navio.build({
});

export const getNavio = () => navio;
export const AppRoot = navio.Root;
export const App = navio.App;

0 comments on commit e4e9686

Please sign in to comment.