2021-04-18 09:18:23 +02:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:adaptive_theme/adaptive_theme.dart';
|
2021-08-22 06:03:18 +02:00
|
|
|
import 'package:file_picker_cross/file_picker_cross.dart';
|
2021-04-18 09:18:23 +02:00
|
|
|
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
|
|
import 'package:fluffychat/config/setting_keys.dart';
|
2021-11-13 17:57:55 +01:00
|
|
|
import 'package:fluffychat/config/themes.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import '../../widgets/matrix.dart';
|
|
|
|
import 'settings_style_view.dart';
|
2021-04-18 09:18:23 +02:00
|
|
|
|
|
|
|
class SettingsStyle extends StatefulWidget {
|
2022-01-01 13:43:51 +01:00
|
|
|
const SettingsStyle({Key? key}) : super(key: key);
|
2021-10-14 18:09:30 +02:00
|
|
|
|
2021-04-18 09:18:23 +02:00
|
|
|
@override
|
|
|
|
SettingsStyleController createState() => SettingsStyleController();
|
|
|
|
}
|
|
|
|
|
|
|
|
class SettingsStyleController extends State<SettingsStyle> {
|
|
|
|
void setWallpaperAction() async {
|
2021-08-10 14:01:15 +02:00
|
|
|
final wallpaper =
|
2021-08-22 06:03:18 +02:00
|
|
|
await FilePickerCross.importFromStorage(type: FileTypeCross.image);
|
2022-01-01 13:43:51 +01:00
|
|
|
final path = wallpaper.path;
|
|
|
|
if (path == null) return;
|
|
|
|
Matrix.of(context).wallpaper = File(path);
|
2021-04-18 09:18:23 +02:00
|
|
|
await Matrix.of(context)
|
|
|
|
.store
|
|
|
|
.setItem(SettingKeys.wallpaper, wallpaper.path);
|
2022-01-01 13:43:51 +01:00
|
|
|
setState(() {});
|
2021-04-18 09:18:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void deleteWallpaperAction() async {
|
|
|
|
Matrix.of(context).wallpaper = null;
|
|
|
|
await Matrix.of(context).store.deleteItem(SettingKeys.wallpaper);
|
2022-01-01 13:43:51 +01:00
|
|
|
setState(() {});
|
2021-04-18 09:18:23 +02:00
|
|
|
}
|
|
|
|
|
2022-05-18 08:54:50 +02:00
|
|
|
void setChatColor(Color? color) async {
|
2021-11-13 17:57:55 +01:00
|
|
|
await Matrix.of(context).store.setItem(
|
|
|
|
SettingKeys.chatColor,
|
2022-05-18 08:54:50 +02:00
|
|
|
color?.value.toString(),
|
2021-11-13 17:57:55 +01:00
|
|
|
);
|
2022-05-18 08:54:50 +02:00
|
|
|
AppConfig.colorSchemeSeed = color;
|
2021-11-13 17:57:55 +01:00
|
|
|
AdaptiveTheme.of(context).setTheme(
|
2022-08-19 08:32:08 +02:00
|
|
|
light: FluffyThemes.buildTheme(Brightness.light),
|
|
|
|
dark: FluffyThemes.buildTheme(Brightness.dark),
|
2021-11-13 17:57:55 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-01-01 13:43:51 +01:00
|
|
|
AdaptiveThemeMode? currentTheme;
|
2021-04-18 09:18:23 +02:00
|
|
|
|
2022-05-18 08:54:50 +02:00
|
|
|
static final List<Color?> customColors = [
|
2021-11-15 07:59:51 +01:00
|
|
|
AppConfig.primaryColor,
|
|
|
|
Colors.blue.shade800,
|
|
|
|
Colors.green.shade800,
|
2022-05-18 08:54:50 +02:00
|
|
|
Colors.orange.shade700,
|
2021-11-15 07:59:51 +01:00
|
|
|
Colors.pink.shade700,
|
|
|
|
Colors.blueGrey.shade600,
|
2022-05-18 08:54:50 +02:00
|
|
|
null,
|
2021-11-15 07:59:51 +01:00
|
|
|
];
|
2021-11-13 17:57:55 +01:00
|
|
|
|
2022-01-01 13:43:51 +01:00
|
|
|
void switchTheme(AdaptiveThemeMode? newTheme) {
|
|
|
|
if (newTheme == null) return;
|
2021-04-18 09:18:23 +02:00
|
|
|
switch (newTheme) {
|
|
|
|
case AdaptiveThemeMode.light:
|
|
|
|
AdaptiveTheme.of(context).setLight();
|
|
|
|
break;
|
|
|
|
case AdaptiveThemeMode.dark:
|
|
|
|
AdaptiveTheme.of(context).setDark();
|
|
|
|
break;
|
|
|
|
case AdaptiveThemeMode.system:
|
|
|
|
AdaptiveTheme.of(context).setSystem();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
setState(() => currentTheme = newTheme);
|
|
|
|
}
|
|
|
|
|
|
|
|
void changeFontSizeFactor(double d) {
|
|
|
|
setState(() => AppConfig.fontSizeFactor = d);
|
|
|
|
Matrix.of(context).store.setItem(
|
|
|
|
SettingKeys.fontSizeFactor,
|
|
|
|
AppConfig.fontSizeFactor.toString(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-01-03 23:19:51 +01:00
|
|
|
void changeBubbleSizeFactor(double d) {
|
|
|
|
setState(() => AppConfig.bubbleSizeFactor = d);
|
|
|
|
Matrix.of(context).store.setItem(
|
|
|
|
SettingKeys.bubbleSizeFactor,
|
|
|
|
AppConfig.bubbleSizeFactor.toString(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-18 09:18:23 +02:00
|
|
|
@override
|
2021-05-22 09:13:47 +02:00
|
|
|
Widget build(BuildContext context) => SettingsStyleView(this);
|
2021-04-18 09:18:23 +02:00
|
|
|
}
|