From e158c23cca4fffd965be153443980392efc29179 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Thu, 10 Nov 2022 13:17:51 -0500 Subject: [PATCH] Added a note about imported apps 'not installed' --- lib/pages/import_export.dart | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/pages/import_export.dart b/lib/pages/import_export.dart index 48b4e45..d919447 100644 --- a/lib/pages/import_export.dart +++ b/lib/pages/import_export.dart @@ -62,7 +62,6 @@ class _ImportExportPageState extends State { body: CustomScrollView(slivers: [ const CustomAppBar(title: 'Import/Export'), SliverFillRemaining( - hasScrollBody: false, child: Padding( padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), @@ -316,7 +315,19 @@ class _ImportExportPageState extends State { }, child: Text('Import ${source.name}')) ])) - .toList() + .toList(), + const Spacer(), + const Divider( + height: 32, + ), + const Text( + 'Imported Apps may incorrectly show as "Not Installed".\nTo fix this, re-install them through Obtainium.\nThis should not affect App data.\n\nOnly affects URL and third-party import methods.', + textAlign: TextAlign.center, + style: TextStyle( + fontStyle: FontStyle.italic, fontSize: 12)), + const SizedBox( + height: 8, + ) ], ))) ]));