Skip to content

Commit

Permalink
Added description
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Mar 5, 2024
1 parent d83869d commit 979cbfe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/i18n/strings.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@
"exportButton": "Export",
"deleteButton": "Delete",
"rootDialogTitle": "Error",
"patchHistoryDescription": "This is a backup of the last patched app. You can install or export it later.",
"unmountDialogText": "Are you sure you want to unmount this app?",
"uninstallDialogText": "Are you sure you want to uninstall this app?",
"rootDialogText": "App was installed with superuser permissions, but currently ReVanced Manager has no permissions.\nPlease grant superuser permissions first.",
Expand Down
8 changes: 8 additions & 0 deletions lib/ui/widgets/appInfoView/app_info_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ class AppInfoView extends StatelessWidget {
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 20),
if (isHistory) ...[
ListTile(
contentPadding:
const EdgeInsets.symmetric(horizontal: 20.0),
subtitle: Text(t.appInfoView.patchHistoryDescription),
),
const SizedBox(height: 4),
],
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: CustomCard(
Expand Down

0 comments on commit 979cbfe

Please sign in to comment.