mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-26 20:41:02 +00:00
fix: Push Custom Sources tile to Advanced section and reorder a bit
This commit is contained in:
@@ -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),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user