2021-04-18 09:18:23 +02:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:adaptive_theme/adaptive_theme.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
|
|
import 'package:fluffychat/config/setting_keys.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:image_picker/image_picker.dart';
|
|
|
|
|
2021-05-22 09:08:23 +02:00
|
|
|
import 'views/settings_style_view.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import '../widgets/matrix.dart';
|
2021-04-18 09:18:23 +02:00
|
|
|
|
|
|
|
class SettingsStyle extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
SettingsStyleController createState() => SettingsStyleController();
|
|
|
|
}
|
|
|
|
|
|
|
|
class SettingsStyleController extends State<SettingsStyle> {
|
|
|
|
void setWallpaperAction() async {
|
|
|
|
final wallpaper = await ImagePicker().getImage(source: ImageSource.gallery);
|
|
|
|
if (wallpaper == null) return;
|
|
|
|
Matrix.of(context).wallpaper = File(wallpaper.path);
|
|
|
|
await Matrix.of(context)
|
|
|
|
.store
|
|
|
|
.setItem(SettingKeys.wallpaper, wallpaper.path);
|
|
|
|
setState(() => null);
|
|
|
|
}
|
|
|
|
|
|
|
|
void deleteWallpaperAction() async {
|
|
|
|
Matrix.of(context).wallpaper = null;
|
|
|
|
await Matrix.of(context).store.deleteItem(SettingKeys.wallpaper);
|
|
|
|
setState(() => null);
|
|
|
|
}
|
|
|
|
|
|
|
|
AdaptiveThemeMode currentTheme;
|
|
|
|
|
|
|
|
void switchTheme(AdaptiveThemeMode newTheme) {
|
|
|
|
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(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2021-05-22 09:13:47 +02:00
|
|
|
Widget build(BuildContext context) => SettingsStyleView(this);
|
2021-04-18 09:18:23 +02:00
|
|
|
}
|