GradientUtils extension
Offers copyWith method to make duplicate Gradient
s as well as global
getters for any Gradient with specific fallbacks; reversed to
easily return a Gradient
with its colors reversed; and animate, as a
shortcut to provide this
Gradient as an AnimatedGradient's source
and return the AnimatedGradient.observe output.
- on
Properties
- begin → AlignmentGeometry
-
Available on Gradient, provided by the GradientUtils extension
If this is a linear-typeGradient
, returnsthis.begin
. Otherwise the fallback retrun value is Alignment.center.no setter - center → AlignmentGeometry
-
Available on Gradient, provided by the GradientUtils extension
If this is a radial- or sweep-typeGradient
, returnsthis.center
. Otherwise the fallback retrun value is Alignment.center.no setter - distance → double
-
Available on Gradient, provided by the GradientUtils extension
If this is aShadedSteps
-typeGradient
, returnsthis.distance
. Otherwise the fallback retrun value is0.0
.no setter - end → AlignmentGeometry
-
Available on Gradient, provided by the GradientUtils extension
If this is a linear-typeGradient
, returnsthis.end
. Otherwise the fallback retrun value is Alignment.center.no setter - endAngle → double
-
Available on Gradient, provided by the GradientUtils extension
If this is a sweep-typeGradient
, returnsthis.endAngle
. Otherwise the fallback retrun value is0.0
.no setter - focal → AlignmentGeometry?
-
Available on Gradient, provided by the GradientUtils extension
If this is a radial-typeGradient
, returnsthis.focal
which may benull
. Otherwise the fallback retrun value isnull
.no setter - focalRadius → double
-
Available on Gradient, provided by the GradientUtils extension
If this is a radial-typeGradient
, returnsthis.focalRadius
. Otherwise the fallback retrun value is0.0
.no setter - radius → double
-
Available on Gradient, provided by the GradientUtils extension
If this is a radial-typeGradient
, returnsthis.radius
. Otherwise the fallback retrun value is0.0
.no setter - reversed → Gradient
-
Available on Gradient, provided by the GradientUtils extension
Returns a copy of thisGradient
with itsList<Color>
colors reversed as well as any potential stops.no setter - shadeFactor → double
-
Available on Gradient, provided by the GradientUtils extension
If this is aShadedSteps
-typeGradient
, returnsthis.shadeFactor
. Otherwise the fallback retrun value is0
.no setter - shadeFunction → ColorArithmetic
-
Available on Gradient, provided by the GradientUtils extension
If this is aShadedSteps
-typeGradient
, returnsthis.shadeFunction
. Otherwise the fallback retrun value is Shades.withWhite.no setter - softness → double
-
Available on Gradient, provided by the GradientUtils extension
If this is a Steps-typeGradient
, returnsthis.softness
. Otherwise the fallback retrun value is0.0
.no setter - startAngle → double
-
Available on Gradient, provided by the GradientUtils extension
If this is a sweep-typeGradient
, returnsthis.startAngle
. Otherwise the fallback retrun value is0.0
.no setter -
steppedColors
→ List<
Color> -
Available on Gradient, provided by the GradientUtils extension
If this is a Steps-typeGradient
, returnsthis.steppedColors
. Otherwise the fallback retrun value is colors.no setter -
steppedStops
→ List<
double> ? -
Available on Gradient, provided by the GradientUtils extension
If this is a Steps-typeGradient
, returnsthis.steppedStops
. Otherwise the fallback retrun value is stops.no setter - tileMode → TileMode
-
Available on Gradient, provided by the GradientUtils extension
How thisGradient
tiles in the plane beyond the region before its starting stop and after its ending stop.no setter
Methods
-
animate(
{required Animation< double> controller, Map<GradientAnimation, dynamic> storyboard = const {}, GradientCopyWith overrideCopyWith = spectrumCopyWith}) → Gradient -
Available on Gradient, provided by the GradientUtils extension
Returns the AnimatedGradient.observe animatedGradient
output from anew AnimatedGradient
constructed bythis
gradient and the provided parameters. -
copyWith(
{List< Color> ? colors, List<double> ? stops, GradientTransform? transform, TileMode? tileMode, AlignmentGeometry? begin, AlignmentGeometry? end, AlignmentGeometry? center, double? radius, AlignmentGeometry? focal, double? focalRadius, double? startAngle, double? endAngle, double? softness, ColorArithmetic? shadeFunction, double? shadeFactor, double? distance}) → Gradient -
Available on Gradient, provided by the GradientUtils extension
📋 Returns a new copy of thisGradient
with any appropriate optional parameters overriding those ofthis
.