LocalStorage
LocalStorage copied to clipboard
is it not working on net maui Hybrid?
is it not working on net maui Hubrid? i already tried, there is no error message but set item not working
@code {
private int currentCount = 0;
protected override async Task OnInitializedAsync()
{
currentCount = await localStorage.GetItemAsync<int>("counter");
}
private async void IncrementCount()
{
currentCount++;
await localStorage.SetItemAsync("counter", currentCount);
}
}
I think it just works fine.