mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
load something for other tab pages
This commit is contained in:
parent
f0a96759a4
commit
3229835f50
1 changed files with 9 additions and 1 deletions
|
@ -38,10 +38,18 @@ namespace Bit.App.Pages
|
|||
{
|
||||
if(CurrentPage is NavigationPage navPage)
|
||||
{
|
||||
if(navPage.RootPage is GeneratorPage genPage)
|
||||
if(navPage.RootPage is GroupingsPage groupingsPage)
|
||||
{
|
||||
// Load something?
|
||||
}
|
||||
else if(navPage.RootPage is GeneratorPage genPage)
|
||||
{
|
||||
await genPage.InitAsync();
|
||||
}
|
||||
else if(navPage.RootPage is SettingsPage settingsPage)
|
||||
{
|
||||
// Load something?
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue