ajout de la page de connexion

pull/9/head
Antoine PEREDERII 2 years ago
parent 2cc7b484e2
commit d385f7b9fe

@ -4,8 +4,7 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Banquale.Views"
Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False">
Shell.FlyoutBehavior="Disabled">
<TabBar>
@ -19,6 +18,11 @@
ContentTemplate="{DataTemplate local:BalancePage}"
Route="Views" />
<ShellContent
Title="Help"
ContentTemplate="{DataTemplate local:HelpPage}"
Route="Views" />
</TabBar>
</Shell>

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Banquale.Views.HelpPage"
Title="HelpPage"
NavigationPage.HasBackButton="True"
NavigatedTo="BalanceView"
NavigationPage.BackButtonTitle="Back">
<VerticalStackLayout>
<SearchBar Text="Quel est votre demande ?" />
<ListView BackgroundColor="Red" />
<SearchBar Text="Quel est le sujet de votre demande ?" />
<ListView BackgroundColor="Red" />
<Editor Placeholder="Decrivez votre demande ici."
MinimumHeightRequest="100"/>
<Button
Text="Envoyer" />
</VerticalStackLayout>
</ContentPage>

@ -0,0 +1,13 @@
namespace Banquale.Views;
public partial class HelpPage : ContentPage
{
public HelpPage()
{
InitializeComponent();
}
void ContentPage_NavigatedTo(System.Object sender, Microsoft.Maui.Controls.NavigatedToEventArgs e)
{
}
}
Loading…
Cancel
Save