From 280bee632d5bf18504fbea2f5c9ab344b5273c0c Mon Sep 17 00:00:00 2001 From: minie4 Date: Thu, 29 Feb 2024 11:44:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Remove=20tooltips=20from=20botto?= =?UTF-8?q?m=20nav=20bar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/main.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 7337e71..1516177 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -55,16 +55,20 @@ class _GoMixHomeState extends State { destinations: [ NavigationDestination( icon: Transform.rotate( - angle: 90 * pi / 180, child: const Icon(Icons.tune_outlined)), + angle: 90 * pi / 180, + child: const Icon(Icons.tune_outlined)), label: 'Mixing', + tooltip: "", ), const NavigationDestination( icon: Icon(Icons.settings_input_component_outlined), label: 'Ports', + tooltip: "", ), const NavigationDestination( icon: Icon(Icons.settings_outlined), label: 'Settings', + tooltip: "", ), ], ),