Reputation: 444
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
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 inactiveColor
properties, 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