AnimatedFluentTheme constructor

const AnimatedFluentTheme({
  1. Key? key,
  2. required FluentThemeData data,
  3. Curve curve = Curves.linear,
  4. Duration duration = kThemeAnimationDuration,
  5. VoidCallback? onEnd,
  6. required Widget child,
})

Creates an animated theme.

By default, the theme transition uses a linear curve. The data and child arguments must not be null.

Implementation

const AnimatedFluentTheme({
  super.key,
  required this.data,
  super.curve,
  super.duration = kThemeAnimationDuration,
  super.onEnd,
  required this.child,
});