79776433

Date: 2025-09-26 22:23:18
Score: 1
Natty:
Report link

In my RemoteViewsFactory, I did it this way. This is Android with MAUI

public void OnDataSetChanged()
{
    LoadData().Wait();
}

...

private async Task LoadData()
{
    
    var items = await asyncRepository()
    _items = new List<ExpenditureItem>(items);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: alexcordovac