You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isModal wraps the child with a gestureDetector as far as I know, but if the child is already wrapped with a gesture detector, isModal will not work
issue code
JustTheTooltip(
isModal: true,
content: Text("Content")
child: GestureDetector(
onTap: () => {}, // if not provided on tap it will work.
child: Text("child"),
)
);
The text was updated successfully, but these errors were encountered:
isModal wraps the child with a gestureDetector as far as I know, but if the child is already wrapped with a gesture detector, isModal will not work
issue code
JustTheTooltip(
isModal: true,
content: Text("Content")
child: GestureDetector(
onTap: () => {}, // if not provided on tap it will work.
child: Text("child"),
)
);
The text was updated successfully, but these errors were encountered: