lerp static method

TabBarTheme lerp(
  1. TabBarTheme a,
  2. TabBarTheme b,
  3. double t
)

Linearly interpolate between two tab bar themes.

The t argument represents position on the timeline, with 0.0 meaning that the interpolation has not started, returning a (or something equivalent to a), 1.0 meaning that the interpolation has finished, returning b (or something equivalent to b), and values in between meaning that the interpolation is at the relevant point on the timeline between a and b. The interpolation can be extrapolated beyond 0.0 and 1.0, so negative values and values greater than 1.0 are valid (and can easily be generated by curves such as Curves.elasticInOut).

Values for t are usually obtained from an Animation<double>, such as an AnimationController.

This method is obsolete and will be deprecated in a future release: please use the TabBarThemeData.lerp instead.

Implementation

static TabBarTheme lerp(TabBarTheme a, TabBarTheme b, double t) {
  if (identical(a, b)) {
    return a;
  }
  return TabBarTheme(
    indicator: Decoration.lerp(a.indicator, b.indicator, t),
    indicatorColor: Color.lerp(a.indicatorColor, b.indicatorColor, t),
    indicatorSize: t < 0.5 ? a.indicatorSize : b.indicatorSize,
    dividerColor: Color.lerp(a.dividerColor, b.dividerColor, t),
    dividerHeight: t < 0.5 ? a.dividerHeight : b.dividerHeight,
    labelColor: Color.lerp(a.labelColor, b.labelColor, t),
    labelPadding: EdgeInsetsGeometry.lerp(a.labelPadding, b.labelPadding, t),
    labelStyle: TextStyle.lerp(a.labelStyle, b.labelStyle, t),
    unselectedLabelColor: Color.lerp(a.unselectedLabelColor, b.unselectedLabelColor, t),
    unselectedLabelStyle: TextStyle.lerp(a.unselectedLabelStyle, b.unselectedLabelStyle, t),
    overlayColor: MaterialStateProperty.lerp<Color?>(a.overlayColor, b.overlayColor, t, Color.lerp),
    splashFactory: t < 0.5 ? a.splashFactory : b.splashFactory,
    mouseCursor: t < 0.5 ? a.mouseCursor : b.mouseCursor,
    tabAlignment: t < 0.5 ? a.tabAlignment : b.tabAlignment,
    textScaler: t < 0.5 ? a.textScaler : b.textScaler,
    indicatorAnimation: t < 0.5 ? a.indicatorAnimation : b.indicatorAnimation,
  );
}