Update flutter/lib/mobile/widgets/custom_scale_widget.dart

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Alessandro De Blasis
2025-10-29 14:08:05 +00:00
committed by GitHub
parent d3ae376aa9
commit c7730d5f52

View File

@@ -6,7 +6,7 @@ import 'package:flutter_hbb/common/widgets/custom_scale_mixin.dart';
class MobileCustomScaleControls extends StatefulWidget {
final FFI ffi;
final ValueChanged<int>? onChanged;
const MobileCustomScaleControls({Key? key, required this.ffi, this.onChanged}) : super(key: key);
const MobileCustomScaleControls({super.key, required this.ffi, this.onChanged});
@override
State<MobileCustomScaleControls> createState() => _MobileCustomScaleControlsState();