split AppShell in MainAppShell and ConnectAppShell
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6ec1e1cdc2
commit
6ac6c731d0
@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<Shell
|
||||||
|
x:Class="ShoopNCook.ConnectAppShell"
|
||||||
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
xmlns:pages="clr-namespace:ShoopNCook.Pages"
|
||||||
|
Shell.FlyoutBehavior="Disabled"
|
||||||
|
Shell.NavBarIsVisible="False"
|
||||||
|
Shell.TabBarBackgroundColor="White"
|
||||||
|
Shell.TabBarTitleColor="{StaticResource Selected}"
|
||||||
|
Shell.TabBarUnselectedColor="{StaticResource TextColorSecondary}">
|
||||||
|
|
||||||
|
<ShellContent
|
||||||
|
x:Name="Splash"
|
||||||
|
Title="More"
|
||||||
|
ContentTemplate="{DataTemplate pages:Splash}"
|
||||||
|
Route="Splash"/>
|
||||||
|
|
||||||
|
<ShellContent
|
||||||
|
x:Name="LoginPage"
|
||||||
|
Title="Login"
|
||||||
|
ContentTemplate="{DataTemplate pages:LoginPage}"
|
||||||
|
Route="LoginPage"/>
|
||||||
|
|
||||||
|
<ShellContent
|
||||||
|
x:Name="RegisterPage"
|
||||||
|
Title="Register"
|
||||||
|
ContentTemplate="{DataTemplate pages:RegisterPage}"
|
||||||
|
Route="RegisterPage"/>
|
||||||
|
|
||||||
|
</Shell>
|
@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Models\Models.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in new issue