Még egy kis UI rendezés

This commit is contained in:
2025-04-07 08:24:04 +02:00
parent e306139aec
commit a3be387ee1
8 changed files with 37 additions and 6 deletions
@@ -19,6 +19,7 @@ public partial class CheckListPage : ContentPage
public ICommand NewCommand { get; set; }
public ICommand ContinueCommand { get; set; }
public ICommand UnblockCommand { get; set; }
public ICommand BlockCommand { get; set; }
public bool IsLoading
{
get => _isLoading;
@@ -38,6 +39,7 @@ public partial class CheckListPage : ContentPage
NewCommand = new Command<CheckListTemplateHeaderDTO>(OnNewItem);
ContinueCommand = new Command<CheckListHeaderDTO>(OnContinueItem);
UnblockCommand = new Command<CheckListHeaderDTO>(OnUnblockItem);
BlockCommand = new Command<CheckListHeaderDTO>(OnBlockItem);
}
protected override bool OnBackButtonPressed()
@@ -80,6 +82,10 @@ public partial class CheckListPage : ContentPage
private async void OnUnblockItem(CheckListHeaderDTO checkListHeaderDTO)
{
}
private async void OnBlockItem(CheckListHeaderDTO checkListHeaderDTO)
{
}
private async Task LoadCheckListTemplate()
{