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$3 = object$.ref;
  final _$$ref$4 = context.ref;
  final _$$ref$5 = withAnimationCoordinator.ref;
  objc.checkOsVersionInternal(
    'UIViewController.didUpdateFocusInContext:withAnimationCoordinator:',
    iOS: (false, (9, 0, 0)),
  );
  _objc_msgSend_pfv6jd(
    _$$ref$3.pointer,
    _sel_didUpdateFocusInContext_withAnimationCoordinator_,
    _$$ref$4.pointer,
    _$$ref$5.pointer,
  );
}