Skip to content

Commit

Permalink
Minor changes to SampleApp
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasReitberger committed Sep 12, 2024
1 parent 323003e commit a24bd0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ public SfListViewPageViewModel(IDispatcher dispatcher, IServiceProvider provider
#region Command

[RelayCommand]
Task Sort() => Shell.Current.DisplayAlert("Sort", "Sort command placeholder...", "OK");
static Task Sort() => Shell.Current.DisplayAlert("Sort", "Sort command placeholder...", "OK");

[RelayCommand]
Task Filter() => Shell.Current.DisplayAlert("Filter", "Filter command placeholder...", "OK");
static Task Filter() => Shell.Current.DisplayAlert("Filter", "Filter command placeholder...", "OK");

[RelayCommand]
Task Clear() => Shell.Current.DisplayAlert("Clear", "Clear command placeholder...", "OK");
static Task Clear() => Shell.Current.DisplayAlert("Clear", "Clear command placeholder...", "OK");

[RelayCommand]
void ValueNext()
Expand Down

0 comments on commit a24bd0e

Please sign in to comment.