Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit
- Modify planned payment - minor bug fixes
18 lines
836 B
XML
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> |