Skip to content

Commit 3d256c0

Browse files
committed
feat: Implement tooltip for cover art wall icons
1 parent 28bdfbd commit 3d256c0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/screens/cover_wall/utils/primary_command_bar_item.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ class PrimaryCommandBarItem extends CommandBarItem {
1010

1111
@override
1212
Widget build(BuildContext context, CommandBarItemDisplayMode displayMode) {
13-
return entry.controllerButtonBuilder(context, shadows);
13+
return Tooltip(
14+
message: entry.tooltipBuilder(context),
15+
child: entry.controllerButtonBuilder(context, shadows),
16+
);
1417
}
1518
}

0 commit comments

Comments
 (0)