I\'ve looked at several related posts and documentation, but still can\'t seem to get expected behavior from @ViewChild.
Ultimately, I\'m trying to set the scroll p
Subscribing to changes on
@ViewChildren(MyComponent) childrenComponent: QueryList
confirmed working, combined with setTimeout() and notifyOnChanges() and careful null checking.
setTimeout()
notifyOnChanges()
null
Any other approach produces unreliable results and is hard to test.