NesOverlayTransitionWidget constructor

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

Base widget for all of the Nes UI transition animation.

It splits the progress of the animation into steps, in order to make it easy to compose the animation.

Implementation

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