Shell Navigation #134
Unanswered
stevewasielewski
asked this question in
Q&A
Replies: 1 comment
-
It seems like you're using MobileBlazorBindings package (which is unsupported now). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Try to use the following code to get a tab bar:
public App()
{
AppHost = MobileBlazorBindingsHost.CreateDefaultBuilder()
.ConfigureServices((hostContext, services) =>
{
// Register app-specific services
//services.AddSingleton();
services.AddSingleton();
})
.Build();
}
Am not sure if am missing something. I have an AppShell.razor with the tabs setup.
Thanks Steve
Beta Was this translation helpful? Give feedback.
All reactions