start property

Widget? start
final

The widget to be displayed as the min label. For eg: an Icon can be displayed.

If not provided the min value is displayed as text.

Sample code

FluidSlider(
  value: _value,
  min: 1.0,
  max: 100.0,
  start: Icon(
    Icons.money_off,
    color: Colors.white,
  ),
  onChanged: (double newValue) {
    setState(() {
      _duelCommandment = newValue.round();
    });
  },
)

Implementation

final Widget? start;