File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -182,21 +182,21 @@ class FormBuilderRangeSlider extends FormBuilderField<RangeValues> {
182
182
if (displayValues != DisplayValues .none &&
183
183
displayValues != DisplayValues .current)
184
184
Text (
185
- '${ _numberFormat .format (min )}' ,
185
+ _numberFormat.format (min),
186
186
style: minTextStyle ?? textStyle,
187
187
),
188
- Spacer (),
188
+ const Spacer (),
189
189
if (displayValues != DisplayValues .none &&
190
190
displayValues != DisplayValues .minMax)
191
191
Text (
192
192
'${_numberFormat .format (field .value .start )} - ${_numberFormat .format (field .value .end )}' ,
193
193
style: textStyle,
194
194
),
195
- Spacer (),
195
+ const Spacer (),
196
196
if (displayValues != DisplayValues .none &&
197
197
displayValues != DisplayValues .current)
198
198
Text (
199
- '${ _numberFormat .format (max )}' ,
199
+ _numberFormat.format (max),
200
200
style: maxTextStyle ?? textStyle,
201
201
),
202
202
],
You can’t perform that action at this time.
0 commit comments