Added IconButton tootlips

This commit is contained in:
Imran Remtulla
2022-09-25 01:43:51 -04:00
parent 428c208de4
commit 33238b56a9
2 changed files with 4 additions and 0 deletions

View File

@@ -206,6 +206,7 @@ class _AppPageState extends State<AppPage> {
} }
}); });
}, },
tooltip: 'Additional Options',
icon: const Icon(Icons.settings)), icon: const Icon(Icons.settings)),
const SizedBox(width: 16.0), const SizedBox(width: 16.0),
Expanded( Expanded(

View File

@@ -214,6 +214,7 @@ class AppsPageState extends State<AppsPage> {
} }
}); });
}, },
tooltip: 'Remove Selected Apps',
icon: const Icon(Icons.delete_outline_outlined), icon: const Icon(Icons.delete_outline_outlined),
), ),
IconButton( IconButton(
@@ -301,6 +302,7 @@ class AppsPageState extends State<AppsPage> {
} }
}); });
}, },
tooltip: 'Install/Update Selected Apps',
icon: const Icon( icon: const Icon(
Icons.file_download_outlined, Icons.file_download_outlined,
)), )),
@@ -315,6 +317,7 @@ class AppsPageState extends State<AppsPage> {
Share.share(urls, Share.share(urls,
subject: 'Selected App URLs from Obtainium'); subject: 'Selected App URLs from Obtainium');
}, },
tooltip: 'Share Selected App URLs',
icon: const Icon(Icons.share), icon: const Icon(Icons.share),
), ),
], ],