💄 Remove tooltips from bottom nav bar

This commit is contained in:
2024-02-29 11:44:47 +01:00
parent 63269c3ba1
commit 280bee632d

View File

@ -55,16 +55,20 @@ class _GoMixHomeState extends State<GoMixHome> {
destinations: <Widget>[
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: "",
),
],
),