ngAfterViewInit method
Implementation
@override
void ngAfterViewInit() {
var ctrl = _cd?.control;
if (ctrl != null) {
_disposer.addStreamSubscription(ctrl.valueChanges.listen((value) {
_changeDetector.markForCheck();
}));
_disposer.addStreamSubscription(ctrl.statusChanges.listen((status) {
_changeDetector.markForCheck();
updateBottomPanelState();
}));
}
}