C#/navigation-page #30

Merged
antoine.perederii merged 3 commits from C#/navigation-page into master 2 years ago

@ -3,10 +3,8 @@
x:Class="Banquale.AppShell" x:Class="Banquale.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Banquale"
xmlns:views="clr-namespace:Banquale.Views" xmlns:views="clr-namespace:Banquale.Views"
Shell.FlyoutBehavior="Disabled" Shell.FlyoutBehavior="Disabled">
Shell.NavBarIsVisible="False">
<!--<ShellContent <!--<ShellContent
Title="Connection" Title="Connection"

@ -4,8 +4,7 @@
xmlns:local="clr-namespace:Banquale.Views" xmlns:local="clr-namespace:Banquale.Views"
x:Class="Banquale.Views.BalancePage" x:Class="Banquale.Views.BalancePage"
Title="BalancePage" Title="BalancePage"
NavigationPage.HasBackButton="True" Shell.NavBarIsVisible="False">
>
<Grid RowDefinitions="auto, *"> <Grid RowDefinitions="auto, *">
<Grid BackgroundColor="Beige" <Grid BackgroundColor="Beige"

@ -3,7 +3,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Banquale.Views.ConnectionPage" x:Class="Banquale.Views.ConnectionPage"
Title="ConnectionPage" Title="ConnectionPage"
BackgroundColor="White"> BackgroundColor="White"
Shell.NavBarIsVisible="False">
<StackLayout> <StackLayout>
<Frame BackgroundColor="#C8C8C8" CornerRadius="20" Margin="20, 250, 20, 0"> <Frame BackgroundColor="#C8C8C8" CornerRadius="20" Margin="20, 250, 20, 0">

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Banquale.Views.HelpPage"> x:Class="Banquale.Views.HelpPage"
Shell.NavBarIsVisible="False">
<VerticalStackLayout VerticalOptions="Center"> <VerticalStackLayout VerticalOptions="Center">

@ -11,4 +11,5 @@ public partial class HelpPage : ContentPage
{ {
await Shell.Current.GoToAsync("//balance"); await Shell.Current.GoToAsync("//balance");
} }
} }

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Banquale.Views.MenuTransferPage"> x:Class="Banquale.Views.MenuTransferPage"
Shell.NavBarIsVisible="False">
<Grid RowDefinitions="auto, auto" <Grid RowDefinitions="auto, auto"
ColumnDefinitions="auto, auto" ColumnDefinitions="auto, auto"

@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Banquale.Views" xmlns:local="clr-namespace:Banquale.Views"
x:Class="Banquale.Views.SwitchAccountPage" x:Class="Banquale.Views.SwitchAccountPage"
Title="SwitchAccountPage" Title="SwitchAccountPage"
BackgroundColor="White"> BackgroundColor="White"
Shell.NavBarIsVisible="False">
<!-- Version StackLayout, moins efficace pour la responsivity --> <!-- Version StackLayout, moins efficace pour la responsivity -->

Loading…
Cancel
Save