sleek_circular_slider icon indicating copy to clipboard operation
sleek_circular_slider copied to clipboard

Example in pub.dev does not show minimal example

Open guyluz11 opened this issue 3 years ago • 0 comments

As you can se in the image the example page does not show any example

I would suggest something like this

SleekCircularSlider(
  onChangeStart: (double value) {},
  onChange: (value) {},
  onChangeEnd: (double value) {},
  appearance: CircularSliderAppearance(
    infoProperties: InfoProperties(modifier: (double value) {
      final budget = (value * 1000).toInt();
      return '\$ $budget';
    }),
  ),
),

guyluz11 avatar Aug 29 '21 01:08 guyluz11