Unverified Commit 30ff0054 authored by Devon Carew's avatar Devon Carew Committed by GitHub

fix an issue reported by the public_member_api_docs lint (#12889)

parent 50decbcd
...@@ -16,7 +16,7 @@ class _ColorsAndStops { ...@@ -16,7 +16,7 @@ class _ColorsAndStops {
final List<double> stops; final List<double> stops;
} }
_ColorsAndStops interpolateColorsAndStops(List<Color> aColors, List<double> aStops, List<Color> bColors, List<double> bStops, double t) { _ColorsAndStops _interpolateColorsAndStops(List<Color> aColors, List<double> aStops, List<Color> bColors, List<double> bStops, double t) {
assert(aColors.length == bColors.length, 'Cannot interpolate between two gradients with a different number of colors.'); // TODO(ianh): remove limitation assert(aColors.length == bColors.length, 'Cannot interpolate between two gradients with a different number of colors.'); // TODO(ianh): remove limitation
assert((aStops == null && aColors.length == 2) || (aStops != null && aStops.length == aColors.length)); assert((aStops == null && aColors.length == 2) || (aStops != null && aStops.length == aColors.length));
assert((bStops == null && bColors.length == 2) || (bStops != null && bStops.length == bColors.length)); assert((bStops == null && bColors.length == 2) || (bStops != null && bStops.length == bColors.length));
...@@ -305,7 +305,7 @@ class LinearGradient extends Gradient { ...@@ -305,7 +305,7 @@ class LinearGradient extends Gradient {
return b.scale(t); return b.scale(t);
if (b == null) if (b == null)
return a.scale(1.0 - t); return a.scale(1.0 - t);
final _ColorsAndStops interpolated = interpolateColorsAndStops(a.colors, a.stops, b.colors, b.stops, t); final _ColorsAndStops interpolated = _interpolateColorsAndStops(a.colors, a.stops, b.colors, b.stops, t);
return new LinearGradient( return new LinearGradient(
begin: AlignmentGeometry.lerp(a.begin, b.begin, t), begin: AlignmentGeometry.lerp(a.begin, b.begin, t),
end: AlignmentGeometry.lerp(a.end, b.end, t), end: AlignmentGeometry.lerp(a.end, b.end, t),
...@@ -539,7 +539,7 @@ class RadialGradient extends Gradient { ...@@ -539,7 +539,7 @@ class RadialGradient extends Gradient {
return b.scale(t); return b.scale(t);
if (b == null) if (b == null)
return a.scale(1.0 - t); return a.scale(1.0 - t);
final _ColorsAndStops interpolated = interpolateColorsAndStops(a.colors, a.stops, b.colors, b.stops, t); final _ColorsAndStops interpolated = _interpolateColorsAndStops(a.colors, a.stops, b.colors, b.stops, t);
return new RadialGradient( return new RadialGradient(
center: AlignmentGeometry.lerp(a.center, b.center, t), center: AlignmentGeometry.lerp(a.center, b.center, t),
radius: math.max(0.0, ui.lerpDouble(a.radius, b.radius, t)), radius: math.max(0.0, ui.lerpDouble(a.radius, b.radius, t)),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment