buildRangeLabel property

(Widget Function()?) buildRangeLabel
final

For example,

RangeInput(
  ...
  id="range-input",
  buildRangeLabel: () {
    return const Text(
      "Custom Title Widget",
       style: TextStyle(
         fontWeight: FontWeight.bold,
         fontSize: 16.0,
         color: Colors.blue,
       ),
     );
   },
)

Implementation

final Widget Function()? buildRangeLabel;