Avalonia ReactiveUI: How to Refresh UI When ObservableCollection of ViewModels Updates in Parent ViewModel?
i’m pretty new to avalonia ui + reactiveui, here’s the situation: I’ve created a parent container called HomeViewModel, which contains an ObservableCollection of two GameViewModel instances. Each GameViewModel corresponds to a specific game and includes a button to toggle a watcher for a particular game folder.
The problem is that although the commands associated with the buttons work correctly, the UI doesn’t refresh immediately when I interact with them. Instead, the UI updates only when I change routes. I’ve tried various approaches to resolve this issue, but I’m still unsure what’s causing it.