my custom slider implementation isn’t a valid override of ‘SliderComponentShape.paint’

I’m using dart code v3.86.0.

I’m attempting to make a custom thumb for a slider in flutter, with little success. I get the error:my custom slider implementation isn’t a valid override of ‘SliderComponentShape.paint’
and have mad esur ethe signature is correct and yet it doenst work.

This i smy full code:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>
class _CustomThumbShape extends SliderComponentShape {
@override
Size getPreferredSize(bool isEnabled, bool isDiscrete) {
return Size.fromRadius(18);
}
String _formatTime(double value) {
int hours = value.floor();
int minutes = ((value - hours) * 60).round();
return '${hours.toString().padLeft(2, '0')}:${minutes.toString().padLeft(2, '0')}';
}
@override
void paint(
PaintingContext context,
Offset thumbCenter, {
required Animation<double> enableAnimation,
required Animation<double> valueAnimation,
required bool isDiscrete,
required TextPainter labelPainter,
required RenderBox parentBox,
required SliderThemeData sliderTheme,
required TextDirection textDirection,
required double value,
required double textScaleFactor,
required Size sizeWithOverflow,
}) {
final Canvas canvas = context.canvas;
final Paint paint = Paint()
..color = Colors.white
..style = PaintingStyle.fill;
canvas.drawCircle(thumbCenter, 18, paint); // Drawing at 'thumbCenter'
// TextSpan for displaying time based on the slider's value
TextSpan span = TextSpan(
style: TextStyle(
fontSize: 14.0,
fontWeight: FontWeight.bold,
color: Colors.black,
),
text: _formatTime(enableAnimation.value), // Displaying time dynamically
);
TextPainter tp = TextPainter(text: span, textAlign: TextAlign.center);
tp.layout();
Offset textCenter = Offset(
thumbCenter.dx - (tp.width / 2), thumbCenter.dy - (tp.height / 2));
tp.paint(canvas, textCenter);
}
}
</code>
<code> class _CustomThumbShape extends SliderComponentShape { @override Size getPreferredSize(bool isEnabled, bool isDiscrete) { return Size.fromRadius(18); } String _formatTime(double value) { int hours = value.floor(); int minutes = ((value - hours) * 60).round(); return '${hours.toString().padLeft(2, '0')}:${minutes.toString().padLeft(2, '0')}'; } @override void paint( PaintingContext context, Offset thumbCenter, { required Animation<double> enableAnimation, required Animation<double> valueAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required SliderThemeData sliderTheme, required TextDirection textDirection, required double value, required double textScaleFactor, required Size sizeWithOverflow, }) { final Canvas canvas = context.canvas; final Paint paint = Paint() ..color = Colors.white ..style = PaintingStyle.fill; canvas.drawCircle(thumbCenter, 18, paint); // Drawing at 'thumbCenter' // TextSpan for displaying time based on the slider's value TextSpan span = TextSpan( style: TextStyle( fontSize: 14.0, fontWeight: FontWeight.bold, color: Colors.black, ), text: _formatTime(enableAnimation.value), // Displaying time dynamically ); TextPainter tp = TextPainter(text: span, textAlign: TextAlign.center); tp.layout(); Offset textCenter = Offset( thumbCenter.dx - (tp.width / 2), thumbCenter.dy - (tp.height / 2)); tp.paint(canvas, textCenter); } } </code>

class _CustomThumbShape extends SliderComponentShape {
  @override
  Size getPreferredSize(bool isEnabled, bool isDiscrete) {
    return Size.fromRadius(18);
  }

  String _formatTime(double value) {
    int hours = value.floor();
    int minutes = ((value - hours) * 60).round();
    return '${hours.toString().padLeft(2, '0')}:${minutes.toString().padLeft(2, '0')}';
  }

  @override
  void paint(
    PaintingContext context,
    Offset thumbCenter, {
    required Animation<double> enableAnimation,
    required Animation<double> valueAnimation,
    required bool isDiscrete,
    required TextPainter labelPainter,
    required RenderBox parentBox,
    required SliderThemeData sliderTheme,
    required TextDirection textDirection,
    required double value,
    required double textScaleFactor,
    required Size sizeWithOverflow,
  }) {
    final Canvas canvas = context.canvas;
    final Paint paint = Paint()
      ..color = Colors.white
      ..style = PaintingStyle.fill;

    canvas.drawCircle(thumbCenter, 18, paint); // Drawing at 'thumbCenter'

    // TextSpan for displaying time based on the slider's value
    TextSpan span = TextSpan(
      style: TextStyle(
        fontSize: 14.0,
        fontWeight: FontWeight.bold,
        color: Colors.black,
      ),
      text: _formatTime(enableAnimation.value), // Displaying time dynamically
    );

    TextPainter tp = TextPainter(text: span, textAlign: TextAlign.center);

    tp.layout();

    Offset textCenter = Offset(
        thumbCenter.dx - (tp.width / 2), thumbCenter.dy - (tp.height / 2));

    tp.paint(canvas, textCenter);
  }
}

and this is the full error message:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>
'_CustomThumbShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value, required Animation<double> valueAnimation})') isn't a valid override of 'SliderComponentShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> activationAnimation, required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value})').dartinvalid_override
</code>
<code> '_CustomThumbShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value, required Animation<double> valueAnimation})') isn't a valid override of 'SliderComponentShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> activationAnimation, required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value})').dartinvalid_override </code>

'_CustomThumbShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value, required Animation<double> valueAnimation})') isn't a valid override of 'SliderComponentShape.paint' ('void Function(PaintingContext, Offset, {required Animation<double> activationAnimation, required Animation<double> enableAnimation, required bool isDiscrete, required TextPainter labelPainter, required RenderBox parentBox, required Size sizeWithOverflow, required SliderThemeData sliderTheme, required TextDirection textDirection, required double textScaleFactor, required double value})').dartinvalid_override

Any help would be very much appreciated!

I’ve tried fixing the signature, to what it says on the documentation, to no avail. The error persits.

New contributor

user24785356 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật