2022-08-10 14:30:28 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
2022-08-19 15:04:40 +02:00
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import 'package:revanced_manager/constants.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';
|
2022-08-21 12:47:44 +02:00
|
|
|
import 'package:revanced_manager/ui/widgets/settingsView/about_info_widget.dart';
|
2022-08-21 17:46:42 +02:00
|
|
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_text_field.dart';
|
2022-08-21 14:52:17 +02:00
|
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_switch_item.dart';
|
2022-08-10 14:30:28 +02:00
|
|
|
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 {
|
2022-08-21 17:46:42 +02:00
|
|
|
final TextEditingController organizationController = TextEditingController();
|
|
|
|
final TextEditingController patchesSourceController = TextEditingController();
|
|
|
|
final TextEditingController integrationsSourceController =
|
|
|
|
TextEditingController();
|
|
|
|
|
|
|
|
SettingsView({Key? key}) : super(key: key);
|
2022-08-10 14:30:28 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return ViewModelBuilder<SettingsViewModel>.reactive(
|
2022-08-20 14:17:00 +02:00
|
|
|
disposeViewModel: false,
|
2022-08-10 14:30:28 +02:00
|
|
|
viewModelBuilder: () => SettingsViewModel(),
|
2022-08-20 14:17:00 +02:00
|
|
|
onModelReady: (model) => model.initialize(),
|
2022-08-10 14:30:28 +02:00
|
|
|
builder: (context, SettingsViewModel model, child) => Scaffold(
|
2022-08-21 17:46:42 +02:00
|
|
|
body: SingleChildScrollView(
|
|
|
|
child: SafeArea(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
const SizedBox(height: 60),
|
|
|
|
I18nText(
|
|
|
|
'settingsView.widgetTitle',
|
2022-08-20 14:17:00 +02:00
|
|
|
child: Text(
|
|
|
|
'',
|
2022-08-21 17:46:42 +02:00
|
|
|
style: GoogleFonts.inter(
|
|
|
|
fontSize: 28,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
2022-08-20 14:17:00 +02:00
|
|
|
),
|
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
const SizedBox(height: 12),
|
|
|
|
SettingsSwitchItem(
|
|
|
|
title: 'settingsView.themeLabel',
|
|
|
|
subtitle: 'settingsView.themeHint',
|
|
|
|
value: isDark,
|
|
|
|
onTap: (value) {
|
|
|
|
isDark = value;
|
|
|
|
getThemeManager(context).toggleDarkLightTheme();
|
2022-08-20 14:17:00 +02:00
|
|
|
},
|
2022-08-21 17:46:42 +02:00
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: I18nText(
|
|
|
|
'settingsView.rootModeLabel',
|
2022-08-20 14:17:00 +02:00
|
|
|
child: Text(
|
2022-08-21 17:46:42 +02:00
|
|
|
'',
|
|
|
|
style: kSettingItemTextStyle,
|
2022-08-20 14:17:00 +02:00
|
|
|
),
|
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
subtitle: I18nText('settingsView.rootModeHint'),
|
|
|
|
trailing: GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
model.navigateToRootChecker();
|
|
|
|
},
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
horizontal: 16, vertical: 8),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.circular(20),
|
|
|
|
border: Border.all(
|
|
|
|
width: 1,
|
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
2022-08-10 14:30:28 +02:00
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
model.isRooted ? 'Rooted' : 'Not rooted',
|
|
|
|
),
|
2022-08-10 14:30:28 +02:00
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
CustomTextField(
|
|
|
|
inputController: organizationController,
|
|
|
|
label: 'settingsView.organizationLabel',
|
|
|
|
hint: ghOrg,
|
|
|
|
onChanged: (value) {
|
|
|
|
ghOrg = value;
|
|
|
|
},
|
|
|
|
),
|
|
|
|
CustomTextField(
|
|
|
|
inputController: patchesSourceController,
|
|
|
|
label: 'settingsView.patchesSourceLabel',
|
|
|
|
hint: patchesRepo,
|
|
|
|
onChanged: (value) {
|
|
|
|
patchesRepo = value;
|
|
|
|
},
|
|
|
|
),
|
|
|
|
CustomTextField(
|
|
|
|
inputController: integrationsSourceController,
|
|
|
|
label: 'settingsView.integrationsSourceLabel',
|
|
|
|
hint: integrationsRepo,
|
|
|
|
onChanged: (value) {
|
|
|
|
integrationsRepo = value;
|
|
|
|
},
|
2022-08-10 14:30:28 +02:00
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
Container(
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
horizontal: 16.0,
|
|
|
|
vertical: 8.0,
|
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
I18nText(
|
|
|
|
'settingsView.languageLabel',
|
|
|
|
child: Text('', style: kSettingItemTextStyle),
|
|
|
|
),
|
|
|
|
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.contributorsLabel',
|
|
|
|
child: Text('', style: kSettingItemTextStyle),
|
|
|
|
),
|
|
|
|
onTap: model.navigateToContributors,
|
2022-08-19 15:04:40 +02:00
|
|
|
),
|
2022-08-21 17:46:42 +02:00
|
|
|
const AboutWidget(),
|
|
|
|
],
|
|
|
|
),
|
2022-08-10 14:30:28 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|