commit
0ec9b96d12
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 191 KiB |
After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
@ -0,0 +1,23 @@
|
|||||||
|
<?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.Category.CategoryPage"
|
||||||
|
xmlns:local="clr-namespace:Banquale.Views.Category"
|
||||||
|
Title="CategoryPage"
|
||||||
|
BackgroundColor="White">
|
||||||
|
|
||||||
|
<VerticalStackLayout
|
||||||
|
VerticalOptions="Center" >
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
<local:CategoryView />
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -1,4 +1,4 @@
|
|||||||
namespace Banquale.Views;
|
namespace Banquale.Views.Category;
|
||||||
|
|
||||||
public partial class CategoryPage : ContentPage
|
public partial class CategoryPage : ContentPage
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
namespace Banquale.Views;
|
namespace Banquale.Views.Category;
|
||||||
|
|
||||||
public partial class CategoryView : ContentView
|
public partial class CategoryView : ContentView
|
||||||
{
|
{
|
@ -1,32 +0,0 @@
|
|||||||
<?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.CategoryPage"
|
|
||||||
xmlns:local="clr-namespace:Banquale.Views"
|
|
||||||
Title="CategoryPage"
|
|
||||||
BackgroundColor="White">
|
|
||||||
|
|
||||||
|
|
||||||
<Grid RowDefinitions="*,*,*,*,*,*,*,*,*,*,*,*,2*">
|
|
||||||
|
|
||||||
|
|
||||||
<ImageButton Source="back_arrow_icon.svg" Grid.Row="0" HorizontalOptions="Start"/>
|
|
||||||
|
|
||||||
<local:CategoryView Grid.Row="2"/>
|
|
||||||
<local:CategoryView Grid.Row="3"/>
|
|
||||||
<local:CategoryView Grid.Row="4"/>
|
|
||||||
<local:CategoryView Grid.Row="5"/>
|
|
||||||
<local:CategoryView Grid.Row="6"/>
|
|
||||||
<local:CategoryView Grid.Row="7"/>
|
|
||||||
<local:CategoryView Grid.Row="8"/>
|
|
||||||
<local:CategoryView Grid.Row="9"/>
|
|
||||||
<local:CategoryView Grid.Row="10"/>
|
|
||||||
<local:CategoryView Grid.Row="11"/>
|
|
||||||
|
|
||||||
<VerticalStackLayout Grid.Row="12">
|
|
||||||
<BoxView HorizontalOptions="FillAndExpand"
|
|
||||||
HeightRequest="1.3"/>
|
|
||||||
</VerticalStackLayout>
|
|
||||||
|
|
||||||
</Grid>
|
|
||||||
</ContentPage>
|
|
@ -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();
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Banquale.Views.MenuTransferPage"
|
x:Class="Banquale.Views.Transfer.MenuTransferPage"
|
||||||
Shell.NavBarIsVisible="False">
|
Shell.NavBarIsVisible="False">
|
||||||
|
|
||||||
<Grid RowDefinitions="auto, auto"
|
<Grid RowDefinitions="auto, auto"
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Banquale.Views.RibPage">
|
x:Class="Banquale.Views.Transfer.RibPage">
|
||||||
|
|
||||||
<VerticalStackLayout>
|
<VerticalStackLayout>
|
||||||
|
|
Loading…
Reference in new issue