onDidShow property

  1. @override
Callback? onDidShow

Optional callback that fires after the AbstractTransitionComponent appears.

Implementation

@override
Callback? get onDidShow =>
    (props[_$key__onDidShow___$TransitionPropsMixin] ?? null) as Callback?;
  1. @override
void onDidShow=(Callback? value)

Optional callback that fires after the AbstractTransitionComponent appears.

Implementation

@override
set onDidShow(Callback? value) =>
    props[_$key__onDidShow___$TransitionPropsMixin] = value;