update views of help-Page, in center

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

@ -63,4 +63,7 @@
<ItemGroup> <ItemGroup>
<MauiXaml Remove="Resources\Images\Images.xaml" /> <MauiXaml Remove="Resources\Images\Images.xaml" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="Syncfusion.Maui.Inputs" Version="21.2.3" />
</ItemGroup>
</Project> </Project>

@ -3,23 +3,25 @@
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"
Title="HelpPage" Title="HelpPage"
NavigationPage.HasBackButton="True" NavigationPage.HasBackButton="True">
NavigatedTo="BalanceView"
NavigationPage.BackButtonTitle="Back">
<VerticalStackLayout> <VerticalStackLayout VerticalOptions="Center">
<SearchBar Text="Quel est votre demande ?" /> <Entry Placeholder="Quel est votre demande ?"
<ListView BackgroundColor="Red" /> HorizontalOptions="Center" />
<SearchBar Text="Quel est le sujet de votre demande ?" /> <Entry Placeholder="Quel est le sujet de votre demande ?"
<ListView BackgroundColor="Red" /> HorizontalOptions="Center" />
<Editor Placeholder="Decrivez votre demande ici." <Editor Placeholder="Decrivez votre demande ici."
MinimumHeightRequest="100"/> MinimumHeightRequest="100"
Margin="10"
HorizontalOptions="Center" />
<Button <Button
Text="Envoyer" /> Text="Envoyer"
Margin="100, 0, 100, 0"
MinimumHeightRequest="80"/>
</VerticalStackLayout> </VerticalStackLayout>

Loading…
Cancel
Save