fluffychat/lib/widgets/settings_switch_list_tile.dart

44 lines
1.2 KiB
Dart
Raw Normal View History

2021-01-19 15:36:21 +00:00
import 'package:flutter/material.dart';
import 'matrix.dart';
class SettingsSwitchListTile extends StatefulWidget {
final bool defaultValue;
final String storeKey;
final String title;
2022-01-29 11:35:03 +00:00
final Function(bool)? onChanged;
2021-01-19 15:36:21 +00:00
2021-11-27 09:10:29 +00:00
const SettingsSwitchListTile.adaptive({
2022-01-29 11:35:03 +00:00
Key? key,
2021-01-19 15:36:21 +00:00
this.defaultValue = false,
2022-01-29 11:35:03 +00:00
required this.storeKey,
required this.title,
2021-01-19 15:36:21 +00:00
this.onChanged,
}) : super(key: key);
@override
_SettingsSwitchListTileState createState() => _SettingsSwitchListTileState();
}
class _SettingsSwitchListTileState extends State<SettingsSwitchListTile> {
@override
Widget build(BuildContext context) {
return FutureBuilder<bool>(
future: Matrix.of(context)
.store
.getItemBool(widget.storeKey, widget.defaultValue),
2021-11-27 09:10:29 +00:00
builder: (context, snapshot) => SwitchListTile.adaptive(
2021-01-19 15:36:21 +00:00
value: snapshot.data ?? widget.defaultValue,
title: Text(widget.title),
onChanged: (bool newValue) async {
widget.onChanged?.call(newValue);
await Matrix.of(context)
.store
.setItem(widget.storeKey, newValue.toString());
2022-01-29 11:35:03 +00:00
setState(() {});
2021-01-19 15:36:21 +00:00
},
),
);
}
}