AppTheming and XAML
This commit is contained in:
16
ShellDemo/AppShell.xaml.cs
Normal file
16
ShellDemo/AppShell.xaml.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
// AppShell - Shell navigation with flyout menu
|
||||
|
||||
using Microsoft.Maui.Controls;
|
||||
|
||||
namespace ShellDemo;
|
||||
|
||||
public partial class AppShell : Shell
|
||||
{
|
||||
public AppShell()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
// Register routes for push navigation (pages not in flyout)
|
||||
Routing.RegisterRoute("detail", typeof(DetailPage));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user