Files
PiliPlus/lib/pages/setting/widgets/switch_item.dart
dom 2220372e4f tweaks
Signed-off-by: dom <githubaccount56556@proton.me>
2026-03-25 12:58:49 +08:00

126 lines
3.3 KiB
Dart

import 'package:PiliPlus/common/widgets/dialog/dialog.dart';
import 'package:PiliPlus/common/widgets/flutter/list_tile.dart';
import 'package:PiliPlus/utils/storage.dart';
import 'package:PiliPlus/utils/storage_key.dart';
import 'package:PiliPlus/utils/storage_pref.dart';
import 'package:flutter/material.dart' hide ListTile;
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
class SetSwitchItem extends StatefulWidget {
final String title;
final String? subtitle;
final String setKey;
final bool defaultVal;
final ValueChanged<bool>? onChanged;
final bool needReboot;
final Widget? leading;
final void Function(BuildContext context)? onTap;
final EdgeInsetsGeometry? contentPadding;
final TextStyle? titleStyle;
const SetSwitchItem({
required this.title,
this.subtitle,
required this.setKey,
this.defaultVal = false,
this.onChanged,
this.needReboot = false,
this.leading,
this.onTap,
this.contentPadding,
this.titleStyle,
super.key,
});
@override
State<SetSwitchItem> createState() => _SetSwitchItemState();
}
class _SetSwitchItemState extends State<SetSwitchItem> {
late bool val;
void setVal() {
if (widget.setKey == SettingBoxKey.appFontWeight) {
val = Pref.appFontWeight != -1;
} else {
val = GStorage.setting.get(
widget.setKey,
defaultValue: widget.defaultVal,
);
}
}
@override
void didUpdateWidget(SetSwitchItem oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.setKey != widget.setKey) {
setVal();
}
}
@override
void initState() {
super.initState();
setVal();
}
Future<void> switchChange([bool? value]) async {
val = value ?? !val;
if (widget.setKey == SettingBoxKey.badCertificateCallback && val) {
val = await showConfirmDialog(
context: context,
title: const Text('确定禁用 SSL 证书验证?'),
content: const Text('禁用容易受到中间人攻击'),
);
}
if (widget.setKey == SettingBoxKey.appFontWeight) {
await GStorage.setting.put(SettingBoxKey.appFontWeight, val ? 4 : -1);
} else {
await GStorage.setting.put(widget.setKey, val);
}
widget.onChanged?.call(val);
if (widget.needReboot) {
SmartDialog.showToast('重启生效');
}
if (mounted) {
setState(() {});
}
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final titleStyle =
widget.titleStyle ??
theme.textTheme.titleMedium!.copyWith(
color: widget.onTap != null && !val
? theme.colorScheme.outline
: null,
);
final subTitleStyle = theme.textTheme.labelMedium!.copyWith(
color: theme.colorScheme.outline,
);
return ListTile(
contentPadding: widget.contentPadding,
enabled: widget.onTap == null ? true : val,
onTap: widget.onTap == null ? switchChange : () => widget.onTap!(context),
title: Text(widget.title, style: titleStyle),
subtitle: widget.subtitle != null
? Text(widget.subtitle!, style: subTitleStyle)
: null,
leading: widget.leading,
trailing: Transform.scale(
scale: 0.8,
alignment: .centerRight,
child: Switch(
value: val,
onChanged: switchChange,
),
),
);
}
}