You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to always show the label with the min/max values on top of cursor.
Currently for me with : SliderTheme( data: SliderTheme.of(context).copyWith( trackHeight: 5.0, showValueIndicator: ShowValueIndicator.always), child: frs.RangeSlider( min: 1, max: 5, lowerValue: _lowerValue, upperValue: _upperValue, showValueIndicator: true, valueIndicatorMaxDecimals: 2, // divisions: 50, onChanged: (double newLowerValue, double newUpperValue) {}, onChangeEnd: (double newLowerValue, double newUpperValue) { setState(() { _lowerValue = newLowerValue; _upperValue = newUpperValue; }); }, )),
the labels are displayed only when I move the cursor.
I would like to show these labels everytime.
Thank you for your help.
The text was updated successfully, but these errors were encountered:
Hi Didier,
Is it possible to always show the label with the min/max values on top of cursor.
Currently for me with :
SliderTheme( data: SliderTheme.of(context).copyWith( trackHeight: 5.0, showValueIndicator: ShowValueIndicator.always), child: frs.RangeSlider( min: 1, max: 5, lowerValue: _lowerValue, upperValue: _upperValue, showValueIndicator: true, valueIndicatorMaxDecimals: 2, // divisions: 50, onChanged: (double newLowerValue, double newUpperValue) {}, onChangeEnd: (double newLowerValue, double newUpperValue) { setState(() { _lowerValue = newLowerValue; _upperValue = newUpperValue; }); }, )),
the labels are displayed only when I move the cursor.
I would like to show these labels everytime.
Thank you for your help.
The text was updated successfully, but these errors were encountered: