diff --git a/flutter/lib/mobile/widgets/custom_scale_widget.dart b/flutter/lib/mobile/widgets/custom_scale_widget.dart index 7807d3e2d..3993544c9 100644 --- a/flutter/lib/mobile/widgets/custom_scale_widget.dart +++ b/flutter/lib/mobile/widgets/custom_scale_widget.dart @@ -170,14 +170,14 @@ class _MobileCustomScaleControlsState extends State { children: [ Text( '${translate("Scale custom")}: $_value%', - style: TextStyle(fontSize: 14, fontWeight: FontWeight.w500), + style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500), ), - SizedBox(height: 8), + const SizedBox(height: 8), Row( children: [ IconButton( iconSize: 20, - padding: EdgeInsets.all(4), + padding: const EdgeInsets.all(4), constraints: smallBtnConstraints, icon: const Icon(Icons.remove), tooltip: translate('Decrease'), @@ -186,7 +186,7 @@ class _MobileCustomScaleControlsState extends State { Expanded(child: sliderControl), IconButton( iconSize: 20, - padding: EdgeInsets.all(4), + padding: const EdgeInsets.all(4), constraints: smallBtnConstraints, icon: const Icon(Icons.add), tooltip: translate('Increase'),