inputStyle property

TextStyle? inputStyle
final

For example,

RangeInput(
  ...
  id="range-input",
  inputStyle: TextStyle(
         color: Colors.deepPurple,
         fontSize: 18,
         height: 1,
       ),
)

Implementation

final TextStyle? inputStyle;