135 lines
4.7 KiB
Dart
135 lines
4.7 KiB
Dart
import 'dart:io';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:tetra_stats/views/settings_view.dart' show subtitleStyle;
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:tetra_stats/gen/strings.g.dart';
|
|
import 'package:window_manager/window_manager.dart';
|
|
|
|
late String oldWindowTitle;
|
|
Color pickerColor = Colors.cyanAccent;
|
|
Color currentColor = Colors.cyanAccent;
|
|
|
|
class CustomizationView extends StatefulWidget {
|
|
const CustomizationView({super.key});
|
|
|
|
@override
|
|
State<StatefulWidget> createState() => CustomizationState();
|
|
}
|
|
|
|
class CustomizationState extends State<CustomizationView> {
|
|
late SharedPreferences prefs;
|
|
late bool oskKagariGimmick;
|
|
late bool sheetbotRadarGraphs;
|
|
|
|
void changeColor(Color color) {
|
|
setState(() => pickerColor = color);
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
if (!kIsWeb && !Platform.isAndroid && !Platform.isIOS) {
|
|
windowManager.getTitle().then((value) => oldWindowTitle = value);
|
|
windowManager.setTitle("Tetra Stats: ${t.settings}");
|
|
}
|
|
_getPreferences().then((value) => setState((){}));
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
if (!kIsWeb && !Platform.isAndroid && !Platform.isIOS) windowManager.setTitle(oldWindowTitle);
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _getPreferences() async {
|
|
prefs = await SharedPreferences.getInstance();
|
|
if (prefs.getBool("oskKagariGimmick") != null) {
|
|
oskKagariGimmick = prefs.getBool("oskKagariGimmick")!;
|
|
} else {
|
|
oskKagariGimmick = true;
|
|
}
|
|
if (prefs.getBool("sheetbotRadarGraphs") != null) {
|
|
sheetbotRadarGraphs = prefs.getBool("sheetbotRadarGraphs")!;
|
|
} else {
|
|
sheetbotRadarGraphs = false;
|
|
}
|
|
}
|
|
|
|
ThemeData getTheme(BuildContext context, Color color){
|
|
return Theme.of(context).copyWith(colorScheme: ColorScheme.dark(primary: color, secondary: Colors.white));
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final t = Translations.of(context);
|
|
List<DropdownMenuItem<AppLocale>>? locales =
|
|
<DropdownMenuItem<AppLocale>>[];
|
|
for (var v in AppLocale.values) {
|
|
locales.add(DropdownMenuItem<AppLocale>(
|
|
value: v, child: Text(t.locales[v.languageTag]!)));
|
|
}
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(t.customization),
|
|
),
|
|
backgroundColor: Colors.black,
|
|
body: SafeArea(
|
|
child: ListView(
|
|
children: [
|
|
// ListTile(
|
|
// title: const Text("Accent color"),
|
|
// trailing: ColorIndicator(HSVColor.fromColor(Theme.of(context).colorScheme.primary)),
|
|
// onTap: () {
|
|
// showDialog(
|
|
// context: context,
|
|
// builder: (BuildContext context) => AlertDialog(
|
|
// title: const Text('Pick an accent color'),
|
|
// content: SingleChildScrollView(
|
|
// child: ColorPicker(
|
|
// pickerColor: pickerColor,
|
|
// onColorChanged: changeColor,
|
|
// ),
|
|
// ),
|
|
// actions: <Widget>[
|
|
// ElevatedButton(
|
|
// child: const Text('Set'),
|
|
// onPressed: () {
|
|
// setState(() {
|
|
// setAccentColor(pickerColor);
|
|
// });
|
|
// Navigator.of(context).pop();
|
|
// },
|
|
// ),
|
|
// ]));
|
|
// }),
|
|
// const ListTile(
|
|
// title: Text("Font"),
|
|
// subtitle: Text("Not implemented"),
|
|
// ),
|
|
// const ListTile(
|
|
// title: Text("Stats Table in TL mathes list"),
|
|
// subtitle: Text("Not implemented"),
|
|
// ),
|
|
ListTile(title: Text(t.oskKagari),
|
|
subtitle: Text(t.oskKagariDescription, style: subtitleStyle),
|
|
trailing: Switch(value: oskKagariGimmick, onChanged: (bool value){
|
|
prefs.setBool("oskKagariGimmick", value);
|
|
setState(() {
|
|
oskKagariGimmick = value;
|
|
});
|
|
}),),
|
|
ListTile(title: Text("Sheetbot-like behavior for radar graphs"),
|
|
subtitle: Text(t.oskKagariDescription, style: subtitleStyle),
|
|
trailing: Switch(value: sheetbotRadarGraphs, onChanged: (bool value){
|
|
prefs.setBool("sheetbotRadarGraphs", value);
|
|
setState(() {
|
|
sheetbotRadarGraphs = value;
|
|
});
|
|
}),)
|
|
],
|
|
)),
|
|
);
|
|
}
|
|
}
|