|
|
@ -2,8 +2,12 @@
|
|
|
|
<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.TransactionsPage"
|
|
|
|
x:Class="Banquale.Views.TransactionsPage"
|
|
|
|
|
|
|
|
xmlns:conv="clr-namespace:Banquale.Views.Converters"
|
|
|
|
Title="TransactionsPage">
|
|
|
|
Title="TransactionsPage">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ContentPage.Resources>
|
|
|
|
|
|
|
|
<conv:Bool2ColorConverters x:Key="bool2ColorConverters"/>
|
|
|
|
|
|
|
|
</ContentPage.Resources>
|
|
|
|
<!--<Grid RowDefinitions="2*, *, 0*, *, 0*, *, *, *, *, *, *">
|
|
|
|
<!--<Grid RowDefinitions="2*, *, 0*, *, 0*, *, *, *, *, *, *">
|
|
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" ColumnDefinitions="2*, *, 2*">
|
|
|
|
<Grid Grid.Row="1" ColumnDefinitions="2*, *, 2*">
|
|
|
@ -40,6 +44,7 @@
|
|
|
|
<Label
|
|
|
|
<Label
|
|
|
|
Text="{Binding Sum, StringFormat='{0} €'}"
|
|
|
|
Text="{Binding Sum, StringFormat='{0} €'}"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
|
|
|
TextColor="{Binding Type, Converter={StaticResource bool2ColorConverters}}"
|
|
|
|
FontSize="Large"
|
|
|
|
FontSize="Large"
|
|
|
|
Margin="0, 0, 0, 20"/>
|
|
|
|
Margin="0, 0, 0, 20"/>
|
|
|
|
|
|
|
|
|
|
|
|