@ -0,0 +1,41 @@
|
||||
<?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.TransactionsPage"
|
||||
Title="TransactionsPage"
|
||||
BackgroundColor="White">
|
||||
|
||||
<Grid RowDefinitions="2*, *, 0*, *, 0*, *, *, *, *, *, *">
|
||||
|
||||
<Grid Grid.Row="1" ColumnDefinitions="2*, *, 2*">
|
||||
<Label Grid.Column="1"
|
||||
Text="Prix"
|
||||
TextColor="Black"
|
||||
HorizontalOptions="Center"
|
||||
FontSize="Large"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="3" ColumnDefinitions="*, *, *">
|
||||
<Label Grid.Column="1"
|
||||
Text="poiuytreza"
|
||||
TextColor="Black"
|
||||
HorizontalOptions="Center"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="5" ColumnDefinitions="*, 4*, *">
|
||||
<Button Grid.Column="1" Text="Categorie" TextColor="Black" FontSize="Medium" BackgroundColor="Gray"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="7" RowDefinitions="auto, *, *" ColumnDefinitions="*, auto, *">
|
||||
<Label Grid.Row="0" Grid.Column="1" TextColor="Black" Text=" Paiment par carte 
4859 **** **** 9985" VerticalOptions="Center"/>
|
||||
<BoxView Grid.Row="1" Grid.Column="1" HorizontalOptions="FillAndExpand"
|
||||
HeightRequest="1.3" Color="Black"/>
|
||||
<Label Grid.Row="2" Grid.Column="1" Text="En date du 15/06/2023" TextColor="Black"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="9" ColumnDefinitions="*, 4*, *">
|
||||
<Button Grid.Column="1" Text="Faire opposition" BackgroundColor="Gray" TextColor="Black"/>
|
||||
</Grid>
|
||||
|
||||
</Grid>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Banquale.Views;
|
||||
|
||||
public partial class TransactionsPage : ContentPage
|
||||
{
|
||||
public TransactionsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue