fluffychat/lib/pages/settings_style/settings_style.dart

93 lines
2.6 KiB
Dart
Raw Normal View History

2021-04-18 07:18:23 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:collection/collection.dart';
import 'package:file_picker/file_picker.dart';
2021-04-18 07:18:23 +00:00
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/config/app_config.dart';
import 'package:fluffychat/config/setting_keys.dart';
2022-12-24 10:48:48 +00:00
import 'package:fluffychat/widgets/theme_builder.dart';
2021-11-09 20:32:16 +00:00
import '../../widgets/matrix.dart';
import 'settings_style_view.dart';
2021-04-18 07:18:23 +00:00
class SettingsStyle extends StatefulWidget {
const SettingsStyle({Key? key}) : super(key: key);
2021-10-14 16:09:30 +00:00
2021-04-18 07:18:23 +00:00
@override
SettingsStyleController createState() => SettingsStyleController();
}
class SettingsStyleController extends State<SettingsStyle> {
void setWallpaperAction() async {
final picked = await FilePicker.platform.pickFiles(
type: FileType.image,
withData: false,
);
final pickedFile = picked?.files.firstOrNull;
if (pickedFile == null) return;
2021-04-18 07:18:23 +00:00
await Matrix.of(context)
.store
.setItem(SettingKeys.wallpaper, pickedFile.path);
setState(() {});
2021-04-18 07:18:23 +00:00
}
void deleteWallpaperAction() async {
Matrix.of(context).wallpaper = null;
await Matrix.of(context).store.deleteItem(SettingKeys.wallpaper);
setState(() {});
2021-04-18 07:18:23 +00:00
}
2022-05-18 06:54:50 +00:00
void setChatColor(Color? color) async {
AppConfig.colorSchemeSeed = color;
2022-12-24 10:48:48 +00:00
ThemeController.of(context).setPrimaryColor(color);
}
2022-12-24 10:48:48 +00:00
ThemeMode get currentTheme => ThemeController.of(context).themeMode;
Color? get currentColor => ThemeController.of(context).primaryColor;
2021-04-18 07:18:23 +00:00
2022-05-18 06:54:50 +00:00
static final List<Color?> customColors = [
2022-12-24 10:48:48 +00:00
AppConfig.chatColor,
2023-03-19 18:59:50 +00:00
Colors.indigo,
Colors.green,
Colors.orange,
Colors.pink,
Colors.blueGrey,
2022-05-18 06:54:50 +00:00
null,
2021-11-15 06:59:51 +00:00
];
2022-12-24 10:48:48 +00:00
void switchTheme(ThemeMode? newTheme) {
if (newTheme == null) return;
2021-04-18 07:18:23 +00:00
switch (newTheme) {
2022-12-24 10:48:48 +00:00
case ThemeMode.light:
ThemeController.of(context).setThemeMode(ThemeMode.light);
2021-04-18 07:18:23 +00:00
break;
2022-12-24 10:48:48 +00:00
case ThemeMode.dark:
ThemeController.of(context).setThemeMode(ThemeMode.dark);
2021-04-18 07:18:23 +00:00
break;
2022-12-24 10:48:48 +00:00
case ThemeMode.system:
ThemeController.of(context).setThemeMode(ThemeMode.system);
2021-04-18 07:18:23 +00:00
break;
}
2022-12-24 10:48:48 +00:00
setState(() {});
2021-04-18 07:18:23 +00:00
}
void changeFontSizeFactor(double d) {
setState(() => AppConfig.fontSizeFactor = d);
Matrix.of(context).store.setItem(
SettingKeys.fontSizeFactor,
AppConfig.fontSizeFactor.toString(),
);
}
void changeBubbleSizeFactor(double d) {
setState(() => AppConfig.bubbleSizeFactor = d);
Matrix.of(context).store.setItem(
SettingKeys.bubbleSizeFactor,
AppConfig.bubbleSizeFactor.toString(),
);
}
2021-04-18 07:18:23 +00:00
@override
2021-05-22 07:13:47 +00:00
Widget build(BuildContext context) => SettingsStyleView(this);
2021-04-18 07:18:23 +00:00
}