forked from ReVanced/revanced-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Disable selection of un-suggested app version by default (ReVan…
…ced#1471) Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
- Loading branch information
1 parent
e7d8285
commit 70b2ee0
Showing
7 changed files
with
181 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
lib/ui/widgets/settingsView/settings_require_suggested_app_version.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_i18n/widgets/I18nText.dart'; | ||
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart'; | ||
|
||
class SRequireSuggestedAppVersion extends StatefulWidget { | ||
const SRequireSuggestedAppVersion({super.key}); | ||
|
||
@override | ||
State<SRequireSuggestedAppVersion> createState() => _SRequireSuggestedAppVersionState(); | ||
} | ||
|
||
final _settingsViewModel = SettingsViewModel(); | ||
|
||
class _SRequireSuggestedAppVersionState extends State<SRequireSuggestedAppVersion> { | ||
@override | ||
Widget build(BuildContext context) { | ||
return SwitchListTile( | ||
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0), | ||
title: I18nText( | ||
'settingsView.requireSuggestedAppVersionLabel', | ||
child: const Text( | ||
'', | ||
style: TextStyle( | ||
fontSize: 20, | ||
fontWeight: FontWeight.w500, | ||
), | ||
), | ||
), | ||
subtitle: I18nText('settingsView.requireSuggestedAppVersionHint'), | ||
value: _settingsViewModel.isRequireSuggestedAppVersionEnabled(), | ||
onChanged: (value) async { | ||
await _settingsViewModel.showRequireSuggestedAppVersionDialog(context, value); | ||
setState(() {}); | ||
}, | ||
); | ||
} | ||
} |