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"),
)
);
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"), ) );