shows tooltip on SpaceCell.

This commit is contained in:
Faris Armoush
2025-06-24 10:45:13 +03:00
parent 329b2ba472
commit 90f8305aa1

View File

@ -229,11 +229,15 @@ class _CommunityStructureCanvasState extends State<CommunityStructureCanvas>
buildSpaceContainer: () {
return Opacity(
opacity: hasNoSelectedSpace || isHighlighted ? 1.0 : 0.5,
child: Tooltip(
message: space.spaceName,
preferBelow: false,
child: SpaceCell(
onTap: () => _onSpaceTapped(space),
icon: space.icon,
name: space.spaceName,
),
),
);
},
onTap: () => showDialog<void>(