didUpdateFocusInContext method

void didUpdateFocusInContext(
  1. UIFocusUpdateContext context, {
  2. required UIFocusAnimationCoordinator withAnimationCoordinator,
})

Called when the screen’s focused item has been updated to a new item. Use the animation coordinator to schedule focus-related animations in response to the update.

Implementation

void didUpdateFocusInContext(
  UIFocusUpdateContext context, {
  required UIFocusAnimationCoordinator withAnimationCoordinator,
}) {
  final _$$ref = object$.ref;
  final _$$ref$1 = context.ref;
  final _$$ref$2 = withAnimationCoordinator.ref;
  objc.checkOsVersionInternal('UIView.didUpdateFocusInContext:withAnimationCoordinator:', iOS: (false, (9, 0, 0)));
  _objc_msgSend_pfv6jd(
    _$$ref.pointer,
    _sel_didUpdateFocusInContext_withAnimationCoordinator_,
    _$$ref$1.pointer,
    _$$ref$2.pointer,
  );
}