lerp static method

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

Linearly interpolate between two navigation rail themes.

If both arguments are null then null is returned.

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.

Implementation

static NavigationRailThemeData? lerp(NavigationRailThemeData? a, NavigationRailThemeData? b, double t) {
  if (identical(a, b)) {
    return a;
  }
  return NavigationRailThemeData(
    backgroundColor: Color.lerp(a?.backgroundColor, b?.backgroundColor, t),
    elevation: lerpDouble(a?.elevation, b?.elevation, t),
    unselectedLabelTextStyle: TextStyle.lerp(a?.unselectedLabelTextStyle, b?.unselectedLabelTextStyle, t),
    selectedLabelTextStyle: TextStyle.lerp(a?.selectedLabelTextStyle, b?.selectedLabelTextStyle, t),
    unselectedIconTheme: a?.unselectedIconTheme == null && b?.unselectedIconTheme == null
      ? null : IconThemeData.lerp(a?.unselectedIconTheme, b?.unselectedIconTheme, t),
    selectedIconTheme: a?.selectedIconTheme == null && b?.selectedIconTheme == null
      ? null : IconThemeData.lerp(a?.selectedIconTheme, b?.selectedIconTheme, t),
    groupAlignment: lerpDouble(a?.groupAlignment, b?.groupAlignment, t),
    labelType: t < 0.5 ? a?.labelType : b?.labelType,
    useIndicator: t < 0.5 ? a?.useIndicator : b?.useIndicator,
    indicatorColor: Color.lerp(a?.indicatorColor, b?.indicatorColor, t),
    indicatorShape: ShapeBorder.lerp(a?.indicatorShape, b?.indicatorShape, t),
    minWidth: lerpDouble(a?.minWidth, b?.minWidth, t),
    minExtendedWidth: lerpDouble(a?.minExtendedWidth, b?.minExtendedWidth, t),

  );
}