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, + ) ], ))) ]));