Uses Inkwell instead of Gesture Detector for canvas widgets.

This commit is contained in:
Faris Armoush
2025-07-14 11:04:29 +03:00
parent 7331c8440b
commit c112cde634
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class _CreateSpaceButtonState extends State<CreateSpaceButton> {
return Tooltip(
margin: const EdgeInsets.symmetric(vertical: 24),
message: 'Create a new space',
child: GestureDetector(
child: InkWell(
onTap: () => SpaceDetailsDialogHelper.showCreate(
context,
communityUuid: widget.communityUuid,

View File

@ -17,7 +17,7 @@ class SpaceCell extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GestureDetector(
return InkWell(
onTap: onTap,
child: Container(
width: 150,