ajout de la page de transfers

pull/11/head
Antoine PEREDERII 2 years ago
parent 319135ded3
commit b809f60fc9

@ -0,0 +1,25 @@
<?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"
Title="TransferPage">
<Grid RowDefinitions="auto, auto"
ColumnDefinitions="*, *">
<Button
Text="Faire un virement"
Grid.Column="0"
Grid.Row="0"/>
<Button
Text="Demander de l'argent"
Grid.Column="1"
Grid.Row="0"/>
<Button
Text="Afficher mon RIB"
Grid.ColumnSpan="1"
Grid.Row="1"/>
</Grid>
</ContentPage>

@ -0,0 +1,9 @@
namespace Banquale.Views;
public partial class TransferPage : ContentPage
{
public TransferPage()
{
InitializeComponent();
}
}
Loading…
Cancel
Save