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