paint abstract method

void paint(
  1. PaintingContext context,
  2. Offset offset,
  3. {required RenderBox parentBox,
  4. required SliderThemeData sliderTheme,
  5. required Animation<double> enableAnimation,
  6. required Offset thumbCenter,
  7. Offset? secondaryOffset,
  8. bool isEnabled,
  9. bool isDiscrete,
  10. required TextDirection textDirection}
)

Paints the track shape based on the state passed to it.

The context argument is the same as the one that includes the Slider's render box.

The offset argument the offset of the origin of the parentBox to the origin of its context canvas. This shape must be painted relative to this offset. See PaintingContextCallback.

The parentBox argument is the RenderBox of the Slider. Its attributes, such as size, can be used to assist in painting this shape.

the sliderTheme argument is the theme assigned to the Slider that this shape belongs to.

The enableAnimation argument is an animation triggered when the Slider is enabled, and it reverses when the slider is disabled. The Slider is enabled when Slider.onChanged is not null.Use this to paint intermediate frames for this shape when the slider changes enabled state.

The thumbCenter argument is the offset of the center of the thumb relative to the origin of the PaintingContext.canvas. It can be used as the point that divides the track into 2 segments.

The secondaryOffset argument is the offset of the secondary value relative to the origin of the PaintingContext.canvas.

If not null, the track is divided into 3 segments.

The isEnabled argument is false when Slider.onChanged is null and true otherwise. When true, the slider will respond to input.

The isDiscrete argument is true if Slider.divisions is non-null. When true, the slider will render tick marks on top of the track.

The textDirection argument can be used to determine how the track segments are painted depending on whether they are active or not.

The track segment between the start of the slider and the thumb is the active track segment. The track segment between the thumb and the end of the slider is the inactive track segment. In TextDirection.ltr, the start of the slider is on the left, and in TextDirection.rtl, the start of the slider is on the right.

Implementation

void paint(
  PaintingContext context,
  Offset offset, {
  required RenderBox parentBox,
  required SliderThemeData sliderTheme,
  required Animation<double> enableAnimation,
  required Offset thumbCenter,
  Offset? secondaryOffset,
  bool isEnabled,
  bool isDiscrete,
  required TextDirection textDirection,
});