@@ -246,7 +246,7 @@ class _OptionsState extends State<Options> {
246246 ),
247247 ),
248248 Text (
249- widget.model.size.toStringAsFixed (3 ),
249+ '${ widget .model .size .toStringAsFixed (3 )}' ,
250250 style: TextStyle (color: Colors .grey[50 ]),
251251 ),
252252 ],
@@ -261,7 +261,7 @@ class _OptionsState extends State<Options> {
261261 child: SliderTheme (
262262 data: controlTheme,
263263 child: Slider (
264- label: widget.model.density.horizontal.toStringAsFixed (1 ),
264+ label: '${ widget .model .density .horizontal .toStringAsFixed (1 )}' ,
265265 min: VisualDensity .minimumDensity,
266266 max: VisualDensity .maximumDensity,
267267 onChanged: (double value) {
@@ -272,7 +272,7 @@ class _OptionsState extends State<Options> {
272272 ),
273273 ),
274274 Text (
275- widget.model.density.horizontal.toStringAsFixed (3 ),
275+ '${ widget .model .density .horizontal .toStringAsFixed (3 )}' ,
276276 style: TextStyle (color: Colors .grey[50 ]),
277277 ),
278278 ],
@@ -287,7 +287,7 @@ class _OptionsState extends State<Options> {
287287 child: SliderTheme (
288288 data: controlTheme,
289289 child: Slider (
290- label: widget.model.density.vertical.toStringAsFixed (1 ),
290+ label: '${ widget .model .density .vertical .toStringAsFixed (1 )}' ,
291291 min: VisualDensity .minimumDensity,
292292 max: VisualDensity .maximumDensity,
293293 onChanged: (double value) {
@@ -298,7 +298,7 @@ class _OptionsState extends State<Options> {
298298 ),
299299 ),
300300 Text (
301- widget.model.density.vertical.toStringAsFixed (3 ),
301+ '${ widget .model .density .vertical .toStringAsFixed (3 )}' ,
302302 style: TextStyle (color: Colors .grey[50 ]),
303303 ),
304304 ],
0 commit comments