LocalStorage icon indicating copy to clipboard operation
LocalStorage copied to clipboard

is it not working on net maui Hybrid?

Open aphestark opened this issue 1 year ago • 1 comments

is it not working on net maui Hubrid? i already tried, there is no error message but set item not working

aphestark avatar Jan 07 '24 17:01 aphestark

@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.

isami-z avatar Feb 08 '24 11:02 isami-z