You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.2 KiB
Dart
105 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'package:fluffychat/config/setting_keys.dart';
|
|
import 'package:fluffychat/widgets/adaptive_dialogs/show_text_input_dialog.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
|
|
class ConfigViewer extends StatefulWidget {
|
|
const ConfigViewer({super.key});
|
|
|
|
@override
|
|
State<ConfigViewer> createState() => _ConfigViewerState();
|
|
}
|
|
|
|
class _ConfigViewerState extends State<ConfigViewer> {
|
|
void _changeSetting(
|
|
AppSettings appSetting,
|
|
SharedPreferences store,
|
|
String initialValue,
|
|
) async {
|
|
if (appSetting is AppSettings<bool>) {
|
|
await appSetting.setItem(store, !(initialValue == 'true'));
|
|
setState(() {});
|
|
return;
|
|
}
|
|
|
|
final value = await showTextInputDialog(
|
|
context: context,
|
|
title: appSetting.name,
|
|
hintText: appSetting.defaultValue.toString(),
|
|
initialText: initialValue,
|
|
);
|
|
if (value == null) return;
|
|
|
|
if (appSetting is AppSettings<String>) {
|
|
await appSetting.setItem(store, value);
|
|
}
|
|
if (appSetting is AppSettings<int>) {
|
|
await appSetting.setItem(store, int.parse(value));
|
|
}
|
|
if (appSetting is AppSettings<double>) {
|
|
await appSetting.setItem(store, double.parse(value));
|
|
}
|
|
|
|
setState(() {});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Advanced configurations'),
|
|
leading: BackButton(
|
|
onPressed: () => context.go('/'),
|
|
),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
Container(
|
|
margin: const EdgeInsets.all(16),
|
|
padding: const EdgeInsets.all(16),
|
|
color: theme.colorScheme.errorContainer,
|
|
child: Text(
|
|
'Changing configs by hand is untested! Use without any warranty!',
|
|
style: TextStyle(
|
|
color: theme.colorScheme.onErrorContainer,
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: ListView.builder(
|
|
itemCount: AppSettings.values.length,
|
|
itemBuilder: (context, i) {
|
|
final store = Matrix.of(context).store;
|
|
final appSetting = AppSettings.values[i];
|
|
var value = '';
|
|
if (appSetting is AppSettings<String>) {
|
|
value = appSetting.getItem(store);
|
|
}
|
|
if (appSetting is AppSettings<int>) {
|
|
value = appSetting.getItem(store).toString();
|
|
}
|
|
if (appSetting is AppSettings<bool>) {
|
|
value = appSetting.getItem(store).toString();
|
|
}
|
|
if (appSetting is AppSettings<double>) {
|
|
value = appSetting.getItem(store).toString();
|
|
}
|
|
return ListTile(
|
|
title: Text(appSetting.name),
|
|
subtitle: Text(value),
|
|
onTap: () => _changeSetting(appSetting, store, value),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|