didChangeViewFocus method

  1. @override
void didChangeViewFocus(
  1. ViewFocusEvent event
)
inherited

Called whenever the PlatformDispatcher receives a notification that the focus state on a view has changed.

Implementation

@override
void didChangeViewFocus(ViewFocusEvent event) {
  super.didChangeViewFocus(event);
  //
  forEachState((state) {
    state.didChangeViewFocus(event);
  }, reversed: true, remove: this);
}