NesHorizontalCloseTransition constructor

const NesHorizontalCloseTransition({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Widget child,
})

A Transition that looks like horizontal doors are closing in front of the current screen, opening again with the new one.

Implementation

const NesHorizontalCloseTransition({
  super.key,
  required super.animation,
  required super.child,
});