stargazing-dino / just_the_tooltip

A directional tooltip for flutter projects
https://pub.dev/packages/just_the_tooltip
MIT License
56 stars 54 forks source link

isModal does not work, if child is gestureDetector #67

Open fai9al7dad opened 1 year ago

fai9al7dad commented 1 year ago

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