Version 1.0.3
Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit

- Modify planned payment
- minor bug fixes
This commit is contained in:
2025-01-26 14:53:16 +01:00
parent 34098c9757
commit 2d69a4b018
22 changed files with 618 additions and 107 deletions

View File

@@ -0,0 +1,29 @@
using CommunityToolkit.Maui.Views;
namespace WheresMyMoney.Maui;
public partial class PlannedPlannedPopup : Popup
{
public PlannedPlannedPopup()
{
InitializeComponent();
}
private async void ModifyPlannedPayment_OnClicked(object? sender, EventArgs e)
{
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(5));
await CloseAsync(PlannedPaymentPopupChoice.Modify, cts.Token);
}
private async void RemovePlannedPayment_OnClicked(object? sender, EventArgs e)
{
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(5));
await CloseAsync(PlannedPaymentPopupChoice.Remove, cts.Token);
}
public enum PlannedPaymentPopupChoice
{
Modify,
Remove
}
}