Sergio Molchanovsky
Sergio Molchanovsky
Maybe this package will help you: https://pub.dev/packages/nested
> This weekend I'm going to check that adding this won't create any additional overhead. @jonataslaw do you have any progress on this issue? People in the chat also want...
+1 for function overloading You've added rather complicated language concepts like strong typing, covariants, enum classes, null-safety, and you even heading to add ADT. But you didn't add such a...
I also tried to wrap it into `Observable` and mutate the inner ObservableList, but Observer still does not rebuild (while it now sees the Observable inside). But, when I use...
No, if I annotate it with `@observable`, it will mean that Observer now reacts to re-assigning the list reference, like `todos = [...todos, newItem];` But I'm not going to do...
Also, to recreate a list like `todos = [...todos, newItem];` you don't even need ObservableList. It's enough to have a plain Dart List ```dart @observable List todos; ``` The `ObservableList`...
> May be add method of ObservableList is not implemented so it is not reactive, i.e. acting like plain add method. Need to check the source code of ObservableList. according...
But I cannot have an Observer inside of YandexMap, because it's a side-package. I cannot get into its source code and add an Observer. Also, as I mentioned above, `Observable`...
Hi @pr-1. I prepared a minimal app, showing the problem. https://github.com/subzero911/mobx_observableList_bug_demo/tree/master/lib If I directly use ListView inside of Observer, everything works fine. But if I pass `ObservableList` into child widget,...
Thanks, that actually works! So the idea behind is that I passed the reference to original ObservableList to the child widget, and an Observer coudn't see any observables inside (because...