createShader method

  1. @override
Shader createShader(
  1. Rect rect,
  2. {TextDirection? textDirection}
)
override

Creates a Shader for this gradient to fill the given rect.

If the gradient's configuration is text-direction-dependent, for example it uses AlignmentDirectional objects instead of Alignment objects, then the textDirection argument must not be null.

The shader's transform will be resolved from the transform of this gradient.

Implementation

@override
Shader createShader(Rect rect, { TextDirection? textDirection }) {
  return ui.Gradient.sweep(
    center.resolve(textDirection).withinRect(rect),
    colors, _impliedStops(), tileMode,
    startAngle,
    endAngle,
    _resolveTransform(rect, textDirection),
  );
}