feat: loudnorm (#1358)

* feat: loudnorm

* fix

* fix: android only

* fix: toString
This commit is contained in:
My-Responsitories
2025-09-28 22:16:33 +08:00
committed by GitHub
parent 046412b709
commit 22c57bf468
14 changed files with 307 additions and 199 deletions

View File

@@ -9,7 +9,7 @@ import 'package:get/get.dart';
class SetSwitchItem extends StatefulWidget {
final String? title;
final String? subtitle;
final String? setKey;
final String setKey;
final bool defaultVal;
final ValueChanged<bool>? onChanged;
final bool needReboot;
@@ -21,7 +21,7 @@ class SetSwitchItem extends StatefulWidget {
const SetSwitchItem({
this.title,
this.subtitle,
this.setKey,
required this.setKey,
this.defaultVal = false,
this.onChanged,
this.needReboot = false,