Guilhermes
This commit is contained in:
30
GuilhermesApp/AppShell.xaml
Normal file
30
GuilhermesApp/AppShell.xaml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="GuilhermesApp.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:pages="clr-namespace:GuilhermesApp.Pages"
|
||||
Title="GuilhermesApp">
|
||||
|
||||
<ShellContent
|
||||
Route="LoginPage"
|
||||
ContentTemplate="{DataTemplate pages:LoginPage}"
|
||||
Shell.FlyoutItemIsVisible="False"
|
||||
Shell.NavBarIsVisible="False" />
|
||||
|
||||
<TabBar Route="MainTabs">
|
||||
<Tab Title="Formulários">
|
||||
<ShellContent ContentTemplate="{DataTemplate pages:FormsMenuPage}" />
|
||||
</Tab>
|
||||
<Tab Title="Chat">
|
||||
<ShellContent ContentTemplate="{DataTemplate pages:ChatPage}" />
|
||||
</Tab>
|
||||
<Tab Title="Perfil">
|
||||
<ShellContent ContentTemplate="{DataTemplate pages:ProfilePage}" />
|
||||
</Tab>
|
||||
<Tab Title="Sensor">
|
||||
<ShellContent ContentTemplate="{DataTemplate pages:SensorPage}" />
|
||||
</Tab>
|
||||
</TabBar>
|
||||
|
||||
</Shell>
|
||||
Reference in New Issue
Block a user