Qasim Ali
Qasim Ali

Reputation: 444

Is there any Possibility to customize a Flutter Slider?

I want to Add Flutter slider in My Cricket App(App For Live Score Cricket). Is there any Possibility to customize a Flutter Slider? if then what will be?

Upvotes: 0

Views: 221

Answers (1)

dumazy
dumazy

Reputation: 14435

There are several things that can easily be customized in Slider. I would suggest playing around with in on DartPad and try the activeColor and inactiveColorproperties, and wrapping it with a SliderTheme. The SliderTheme allows you to define custom SliderThemeData:

This theme is for both the Slider and the RangeSlider. The properties that are only for the Slider are: tickMarkShape, thumbShape, trackShape, and valueIndicatorShape.

Upvotes: 1

Related Questions