From c7730d5f52f1553402b6aef3e8e23a5feb8e9288 Mon Sep 17 00:00:00 2001 From: Alessandro De Blasis Date: Wed, 29 Oct 2025 14:08:05 +0000 Subject: [PATCH] Update flutter/lib/mobile/widgets/custom_scale_widget.dart Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- flutter/lib/mobile/widgets/custom_scale_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/lib/mobile/widgets/custom_scale_widget.dart b/flutter/lib/mobile/widgets/custom_scale_widget.dart index b59622263..50d264467 100644 --- a/flutter/lib/mobile/widgets/custom_scale_widget.dart +++ b/flutter/lib/mobile/widgets/custom_scale_widget.dart @@ -6,7 +6,7 @@ import 'package:flutter_hbb/common/widgets/custom_scale_mixin.dart'; class MobileCustomScaleControls extends StatefulWidget { final FFI ffi; final ValueChanged? onChanged; - const MobileCustomScaleControls({Key? key, required this.ffi, this.onChanged}) : super(key: key); + const MobileCustomScaleControls({super.key, required this.ffi, this.onChanged}); @override State createState() => _MobileCustomScaleControlsState();