Replies: 1 comment
-
onGeneralTap: (context, controller, details) {
// Dismiss feature
if (_isShowingFeature) {
_hideFeature();
}
return false; // Let tap pass through |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just wanted to provide a solution here in case someone else has a similar issue.
Text selection triggers a feature on my app.
I am using onGeneralTap to handle the dismissing of that feature. When I return
truein onGeneralTap, the tap is considered handled. Returningfalseinstead will allow the tap to pass through and also dismiss the text selection.Beta Was this translation helpful? Give feedback.
All reactions