cpd_app_gruppe_finanzplaner/lib/preferences.dart

207 lines
6.5 KiB
Dart
Raw Normal View History

2023-06-14 02:46:11 +02:00
import 'package:easy_localization/easy_localization.dart';
2023-06-15 00:55:02 +02:00
import 'package:flutter/foundation.dart';
import 'package:flutter_neumorphic/flutter_neumorphic.dart';
import 'package:tests/theme/theme_manager.dart';
ThemeManager _themeManager = ThemeManager();
class Settings extends StatefulWidget {
const Settings({Key? key}) : super(key: key);
@override
SettingsState createState() => SettingsState();
}
class SettingsState extends State<Settings> {
String _selectedLanguage = 'English';
String _selectedCurrency = 'Euro';
final List<String> _languages = ['English', 'Deutsch'];
final List<String> _currencies = ['Euro', 'Dollar', 'CHF'];
2023-06-15 00:55:02 +02:00
void checkForLanguage(BuildContext context) {
2023-06-14 02:46:11 +02:00
String language = context.locale.toString();
2023-06-15 00:55:02 +02:00
if (kDebugMode) {
print(language);
}
switch (language) {
case "en_US":
_selectedLanguage = "English";
break;
case "de_DE":
_selectedLanguage = "Deutsch";
break;
2023-06-14 02:46:11 +02:00
}
}
@override
void dispose() {
_themeManager.removeListener(themeListener);
super.dispose();
}
2023-06-15 00:55:02 +02:00
themeListener() {
if (mounted) {
setState(() {});
}
2023-06-15 00:55:02 +02:00
}
2023-06-15 00:55:02 +02:00
@override
void initState() {
super.initState();
2023-06-14 02:46:11 +02:00
2023-06-15 00:55:02 +02:00
_themeManager.addListener(themeListener);
}
@override
Widget build(BuildContext context) {
2023-06-14 02:46:11 +02:00
checkForLanguage(context);
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
toolbarHeight: 80,
title: Text(
2023-06-14 02:46:11 +02:00
'settings'.tr(),
2023-06-15 00:55:02 +02:00
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.black54,
),
),
centerTitle: true,
2023-06-15 00:55:02 +02:00
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(15),
bottomRight: Radius.circular(15),
),
),
shadowColor: Colors.grey.shade300,
leading: Padding(
padding: const EdgeInsets.only(left: 16.0),
child: NeumorphicButton(
onPressed: () {
2023-06-14 02:46:11 +02:00
Navigator.pop(context, "Change");
},
style: NeumorphicStyle(
shape: NeumorphicShape.flat,
2023-06-15 00:55:02 +02:00
boxShape: const NeumorphicBoxShape.circle(),
depth: 6,
intensity: 0.9,
color: Colors.grey.shade100,
),
2023-06-15 00:55:02 +02:00
padding: const EdgeInsets.all(10),
child: const Icon(Icons.arrow_back, color: Colors.black38),
),
),
),
body: ListView(
padding: const EdgeInsets.all(16.0),
children: [
Neumorphic(
style: NeumorphicStyle(
depth: 7,
intensity: 1,
shadowDarkColor: Colors.grey.shade300,
color: Colors.grey.shade100,
boxShape: NeumorphicBoxShape.roundRect(BorderRadius.circular(15)),
),
child: ListTile(
2023-06-14 02:46:11 +02:00
title: Text('darkmode'.tr()),
trailing: NeumorphicSwitch(
value: _themeManager.themeMode == ThemeMode.dark,
onChanged: (bool value) {
setState(() {
_themeManager.toggleTheme(value);
});
},
style: NeumorphicSwitchStyle(
lightSource: LightSource.topLeft,
thumbShape: NeumorphicShape.concave,
trackDepth: 5,
// Weitere Style-Eigenschaften hier anpassen
// Um den Switch heller zu machen, kannst du die Farben anpassen
2023-06-15 00:55:02 +02:00
activeTrackColor: Colors.lightGreen,
// Farbe für den aktiven Track
inactiveTrackColor: Colors.grey.shade300,
// Farbe für den inaktiven Track
activeThumbColor: Colors.grey.shade100,
// Farbe für den aktiven Thumb
inactiveThumbColor:
Colors.grey.shade200, // Farbe für den inaktiven Thumb
),
),
),
),
const SizedBox(height: 16),
Neumorphic(
style: NeumorphicStyle(
depth: 7,
intensity: 1,
shadowDarkColor: Colors.grey.shade300,
color: Colors.grey.shade100,
boxShape: NeumorphicBoxShape.roundRect(BorderRadius.circular(15)),
),
child: ListTile(
2023-06-14 02:46:11 +02:00
title: Text('language'.tr()),
trailing: DropdownButton<String>(
value: _selectedLanguage,
onChanged: (String? newValue) {
setState(() {
_selectedLanguage = newValue!;
2023-06-15 00:55:02 +02:00
switch (_selectedLanguage) {
case "English":
context.setLocale(const Locale('en', 'US'));
break;
case "Deutsch":
context.setLocale(const Locale('de', 'DE'));
break;
2023-06-14 02:46:11 +02:00
}
});
},
items: _languages.map<DropdownMenuItem<String>>((String value) {
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
),
),
),
const SizedBox(height: 16),
Neumorphic(
style: NeumorphicStyle(
depth: 7,
intensity: 1,
shadowDarkColor: Colors.grey.shade300,
color: Colors.grey.shade100,
boxShape: NeumorphicBoxShape.roundRect(BorderRadius.circular(15)),
),
child: ListTile(
2023-06-14 02:46:11 +02:00
title: Text('currency'.tr()),
trailing: DropdownButton<String>(
value: _selectedCurrency,
onChanged: (String? newValue) {
setState(() {
_selectedCurrency = newValue!;
// Hier kannst du die Währungseinstellung entsprechend anpassen
// z.B. mit einer Funktion, die die Währung ändert.
});
},
2023-06-15 00:55:02 +02:00
items:
_currencies.map<DropdownMenuItem<String>>((String value) {
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
),
),
),
],
),
);
}
}