67 lines
1.8 KiB
Dart
67 lines
1.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:pilipala/utils/storage.dart';
|
|
|
|
class SetSwitchItem extends StatefulWidget {
|
|
final String? title;
|
|
final String? subTitle;
|
|
final String? setKey;
|
|
|
|
const SetSwitchItem({
|
|
this.title,
|
|
this.subTitle,
|
|
this.setKey,
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
State<SetSwitchItem> createState() => _SetSwitchItemState();
|
|
}
|
|
|
|
class _SetSwitchItemState extends State<SetSwitchItem> {
|
|
// ignore: non_constant_identifier_names
|
|
Box Setting = GStrorage.setting;
|
|
late bool val;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
val = Setting.get(widget.setKey, defaultValue: false);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
TextStyle subTitleStyle = Theme.of(context)
|
|
.textTheme
|
|
.labelMedium!
|
|
.copyWith(color: Theme.of(context).colorScheme.outline);
|
|
return ListTile(
|
|
enableFeedback: true,
|
|
onTap: () {
|
|
Setting.put(widget.setKey, !val);
|
|
},
|
|
title: Text(widget.title!),
|
|
subtitle: widget.subTitle != null
|
|
? Text(widget.subTitle!, style: subTitleStyle)
|
|
: null,
|
|
trailing: Transform.scale(
|
|
scale: 0.8,
|
|
child: Switch(
|
|
thumbIcon: MaterialStateProperty.resolveWith<Icon?>(
|
|
(Set<MaterialState> states) {
|
|
if (states.isNotEmpty && states.first == MaterialState.selected) {
|
|
return const Icon(Icons.done);
|
|
}
|
|
return null; // All other states will use the default thumbIcon.
|
|
}),
|
|
value: val,
|
|
onChanged: (value) {
|
|
val = value;
|
|
Setting.put(widget.setKey, value);
|
|
setState(() {});
|
|
}),
|
|
),
|
|
);
|
|
}
|
|
}
|