WheresMyMoney/WheresMyMoney.Maui/PlannedPlannedPopup.xaml
Kapitan 2d69a4b018
Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit
Version 1.0.3
- Modify planned payment
- minor bug fixes
2025-01-26 14:53:16 +01:00

18 lines
836 B
XML

<?xml version="1.0" encoding="utf-8"?>
<toolkit:Popup
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="WheresMyMoney.Maui.PlannedPlannedPopup">
<VerticalStackLayout>
<Button Text="Modyfikuj" Clicked="ModifyPlannedPayment_OnClicked"
BackgroundColor="Transparent"
TextColor="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}" />
<Button Text="Usuń" Clicked="RemovePlannedPayment_OnClicked"
BackgroundColor="Transparent"
TextColor="{AppThemeBinding Light={StaticResource Error}, Dark={StaticResource ErrorDark}}" />
</VerticalStackLayout>
</toolkit:Popup>