xaml/transfer-page #11
Merged
titouan.louvet
merged 8 commits from xaml/transfer-page
into master
2 years ago
After Width: | Height: | Size: 271 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 232 B |
@ -0,0 +1,37 @@
|
|||||||
|
<?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.MenuTransferPage">
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto"
|
||||||
|
ColumnDefinitions="auto, auto"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Faire un virement"
|
||||||
|
Grid.Column="0"
|
||||||
|
Grid.Row="0"
|
||||||
|
Margin="20"
|
||||||
|
MinimumWidthRequest="160"
|
||||||
|
MinimumHeightRequest="160"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Demander de l'argent"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="0"
|
||||||
|
Margin="20"
|
||||||
|
MinimumWidthRequest="160"
|
||||||
|
MinimumHeightRequest="160"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Afficher mon RIB"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="1"
|
||||||
|
Margin="20"
|
||||||
|
MinimumHeightRequest="160"
|
||||||
|
MinimumWidthRequest="360"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,53 @@
|
|||||||
|
<?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.RequestPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Destinataire"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="IBAN"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Montant"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Envoyer la demande"
|
||||||
|
Margin="0, 75, 0, 0"
|
||||||
|
MinimumHeightRequest="80"
|
||||||
|
WidthRequest="300"
|
||||||
|
MaximumWidthRequest="400"/>
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,125 @@
|
|||||||
|
<?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.RibPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto"
|
||||||
|
ColumnDefinitions="*, *">
|
||||||
|
|
||||||
|
<Label Text="Code Banque" />
|
||||||
|
|
||||||
|
<Label Text="Code agence"
|
||||||
|
Grid.Column="1" />
|
||||||
|
<Label Text="102 330"
|
||||||
|
Grid.Row="1" />
|
||||||
|
<Label Text="01 009"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, *, auto" >
|
||||||
|
|
||||||
|
<Label Text="N° de Compte" />
|
||||||
|
|
||||||
|
<Label Text="0000545090"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Label Text="Clé RIB"
|
||||||
|
Grid.Column="1" />
|
||||||
|
|
||||||
|
<Label Text="55"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="2"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="45"/>
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="3"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Titulaire du compte" />
|
||||||
|
|
||||||
|
<Label Text="M BOURAUD DESCHAMPS" />
|
||||||
|
|
||||||
|
<Button Text="Télécharger le RIB"
|
||||||
|
HeightRequest="150"
|
||||||
|
WidthRequest="300" />
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,53 @@
|
|||||||
|
<?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.TransferPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Destinataire"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="IBAN"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Montant"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Effectuer le virement"
|
||||||
|
Margin="0, 75, 0, 0"
|
||||||
|
MinimumHeightRequest="80"
|
||||||
|
WidthRequest="300"
|
||||||
|
MaximumWidthRequest="400"/>
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
Loading…
Reference in new issue