mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 14:04:26 +02:00
fix: Push Custom Sources tile to Advanced section and reorder a bit
This commit is contained in:
parent
bd5b38d88e
commit
7231d44e02
@ -101,7 +101,6 @@
|
|||||||
"settingsView": {
|
"settingsView": {
|
||||||
"widgetTitle": "Settings",
|
"widgetTitle": "Settings",
|
||||||
"appearanceSectionTitle": "Appearance",
|
"appearanceSectionTitle": "Appearance",
|
||||||
"patcherSectionTitle": "Patcher",
|
|
||||||
"teamSectionTitle": "Team",
|
"teamSectionTitle": "Team",
|
||||||
"infoSectionTitle": "Info",
|
"infoSectionTitle": "Info",
|
||||||
"advancedSectionTitle": "Advanced",
|
"advancedSectionTitle": "Advanced",
|
||||||
|
@ -96,18 +96,6 @@ class SettingsView extends StatelessWidget {
|
|||||||
onTap: () => model.showLanguagesDialog(context),
|
onTap: () => model.showLanguagesDialog(context),
|
||||||
),
|
),
|
||||||
_settingsDivider,
|
_settingsDivider,
|
||||||
SettingsSection(
|
|
||||||
title: 'settingsView.patcherSectionTitle',
|
|
||||||
children: <Widget>[
|
|
||||||
SettingsTileDialog(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: 'settingsView.sourcesLabel',
|
|
||||||
subtitle: 'settingsView.sourcesLabelHint',
|
|
||||||
onTap: () => model.showSourcesDialog(context),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
_settingsDivider,
|
|
||||||
SettingsSection(
|
SettingsSection(
|
||||||
title: 'settingsView.teamSectionTitle',
|
title: 'settingsView.teamSectionTitle',
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
@ -133,6 +121,24 @@ class SettingsView extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
_settingsDivider,
|
_settingsDivider,
|
||||||
|
SettingsSection(
|
||||||
|
title: 'settingsView.advancedSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
SettingsTileDialog(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: 'settingsView.apiURLLabel',
|
||||||
|
subtitle: 'settingsView.apiURLHint',
|
||||||
|
onTap: () => model.showApiUrlDialog(context),
|
||||||
|
),
|
||||||
|
SettingsTileDialog(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: 'settingsView.sourcesLabel',
|
||||||
|
subtitle: 'settingsView.sourcesLabelHint',
|
||||||
|
onTap: () => model.showSourcesDialog(context),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
_settingsDivider,
|
||||||
SettingsSection(
|
SettingsSection(
|
||||||
title: 'settingsView.infoSectionTitle',
|
title: 'settingsView.infoSectionTitle',
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
@ -157,18 +163,6 @@ class SettingsView extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
_settingsDivider,
|
|
||||||
SettingsSection(
|
|
||||||
title: 'settingsView.advancedSectionTitle',
|
|
||||||
children: <Widget>[
|
|
||||||
SettingsTileDialog(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: 'settingsView.apiURLLabel',
|
|
||||||
subtitle: 'settingsView.apiURLHint',
|
|
||||||
onTap: () => model.showApiUrlDialog(context),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user