Last updated:
0 purchases
rectangle slider thumb shape
Package contains rectangle shape for slider.
Usage #
SliderTheme(
data: SliderTheme.of(context).copyWith(
thumbShape: const RectSliderThumbShape(
enabledThumbRadius: 4,
),
),
child: Slider(
min: 0,
max: 1,
value: 0.5,
onChanged: (value) {
print('${value}');
},
),
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.