2022-08-10 14:30:28 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
2022-08-12 11:42:43 +02:00
|
|
|
import 'package:revanced_manager/theme.dart';
|
2022-08-10 14:30:28 +02:00
|
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
|
|
|
import 'package:stacked/stacked.dart';
|
2022-08-11 21:05:03 +02:00
|
|
|
import 'package:stacked_themes/stacked_themes.dart';
|
2022-08-10 14:30:28 +02:00
|
|
|
|
|
|
|
class SettingsView extends StatelessWidget {
|
|
|
|
const SettingsView({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return ViewModelBuilder<SettingsViewModel>.reactive(
|
|
|
|
viewModelBuilder: () => SettingsViewModel(),
|
|
|
|
builder: (context, SettingsViewModel model, child) => Scaffold(
|
|
|
|
body: SafeArea(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
child: ListView(
|
|
|
|
children: <Widget>[
|
|
|
|
I18nText(
|
|
|
|
'settingsView.widgetTitle',
|
|
|
|
child: Text(
|
|
|
|
'',
|
|
|
|
style: Theme.of(context).textTheme.headline5,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: I18nText('settingsView.themeLabel'),
|
|
|
|
subtitle: I18nText('settingsView.themeHint'),
|
|
|
|
trailing: Switch(
|
2022-08-12 11:42:43 +02:00
|
|
|
value: isDark,
|
2022-08-10 14:30:28 +02:00
|
|
|
onChanged: (value) {
|
2022-08-12 11:42:43 +02:00
|
|
|
isDark = value;
|
2022-08-11 21:05:03 +02:00
|
|
|
getThemeManager(context).toggleDarkLightTheme();
|
2022-08-10 14:30:28 +02:00
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
padding: const EdgeInsets.symmetric(
|
2022-08-11 21:05:03 +02:00
|
|
|
horizontal: 16.0,
|
|
|
|
vertical: 8.0,
|
|
|
|
),
|
2022-08-10 14:30:28 +02:00
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
I18nText(
|
|
|
|
'settingsView.languageLabel',
|
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
DropdownButton(
|
|
|
|
value: 'en',
|
|
|
|
items: const [
|
|
|
|
DropdownMenuItem(
|
|
|
|
value: 'en',
|
|
|
|
child: Text('English'),
|
|
|
|
),
|
|
|
|
DropdownMenuItem(
|
|
|
|
value: 'fr',
|
|
|
|
child: Text('French'),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
onChanged: (value) {
|
|
|
|
value = value;
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: I18nText('settingsView.aboutLabel'),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: I18nText('settingsView.contributorsLabel'),
|
2022-08-12 20:07:16 +02:00
|
|
|
onTap: model.navigateToContributors,
|
2022-08-10 14:30:28 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|