From 33238b56a91f42c60e6efef06447552f82324062 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sun, 25 Sep 2022 01:43:51 -0400 Subject: [PATCH] Added IconButton tootlips --- lib/pages/app.dart | 1 + lib/pages/apps.dart | 3 +++ 2 files changed, 4 insertions(+) diff --git a/lib/pages/app.dart b/lib/pages/app.dart index 736ee49..2bcc573 100644 --- a/lib/pages/app.dart +++ b/lib/pages/app.dart @@ -206,6 +206,7 @@ class _AppPageState extends State { } }); }, + tooltip: 'Additional Options', icon: const Icon(Icons.settings)), const SizedBox(width: 16.0), Expanded( diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 808147c..3a539a9 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -214,6 +214,7 @@ class AppsPageState extends State { } }); }, + tooltip: 'Remove Selected Apps', icon: const Icon(Icons.delete_outline_outlined), ), IconButton( @@ -301,6 +302,7 @@ class AppsPageState extends State { } }); }, + tooltip: 'Install/Update Selected Apps', icon: const Icon( Icons.file_download_outlined, )), @@ -315,6 +317,7 @@ class AppsPageState extends State { Share.share(urls, subject: 'Selected App URLs from Obtainium'); }, + tooltip: 'Share Selected App URLs', icon: const Icon(Icons.share), ), ],