mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
refactor: improve code readability according to linter
This commit is contained in:
parent
6a45db8a38
commit
567b1a3ace
4 changed files with 17 additions and 11 deletions
|
@ -95,7 +95,8 @@ class GithubAPI {
|
|||
'# ' +
|
||||
response.data[i]['tag_name'] +
|
||||
'\n' +
|
||||
response.data[i]['body']);
|
||||
response.data[i]['body'],
|
||||
);
|
||||
}
|
||||
return releases;
|
||||
} on Exception catch (e) {
|
||||
|
|
|
@ -77,7 +77,9 @@ class _InstalledAppItemState extends State<InstalledAppItem> {
|
|||
translationParams: {
|
||||
'version': widget.suggestedVersion.isEmpty
|
||||
? FlutterI18n.translate(
|
||||
context, 'appSelectorCard.allVersions')
|
||||
context,
|
||||
'appSelectorCard.allVersions',
|
||||
)
|
||||
: 'v${widget.suggestedVersion}',
|
||||
},
|
||||
),
|
||||
|
|
|
@ -71,7 +71,9 @@ class _NotInstalledAppItem extends State<NotInstalledAppItem> {
|
|||
translationParams: {
|
||||
'version': widget.suggestedVersion.isEmpty
|
||||
? FlutterI18n.translate(
|
||||
context, 'appSelectorCard.allVersions')
|
||||
context,
|
||||
'appSelectorCard.allVersions',
|
||||
)
|
||||
: 'v${widget.suggestedVersion}',
|
||||
},
|
||||
),
|
||||
|
|
|
@ -131,7 +131,8 @@ class _PatchItemState extends State<PatchItem> {
|
|||
.areExperimentalPatchesEnabled()) {
|
||||
widget.isSelected = false;
|
||||
widget.toast.showBottom(
|
||||
'patchItem.unsupportedPatchVersion');
|
||||
'patchItem.unsupportedPatchVersion',
|
||||
);
|
||||
} else {
|
||||
widget.isSelected = newValue!;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue