Guilhermes

This commit is contained in:
Guilherme Gaspar
2026-03-23 17:42:36 +00:00
parent 2f1935bf94
commit 44f456eb29
57 changed files with 1916 additions and 0 deletions

View 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>