We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When wrapping the OverflowView into a GestureDetector, the onTap callback is never called when tapping on the widget.
OverflowView
GestureDetector
onTap
GestureDetector( onTap: () => print('Hit !'), // Never called child: OverflowView.flexible( children: [Text('A'), Text('B'), Text('C')], builder: (context, remaining) => Text('+$remaining'), ), ),
I'm using Flutter (Channel beta, 3.13.0-0.2.pre) but I'm unsure it makes any difference
The text was updated successfully, but these errors were encountered:
My current fix is to change this line by:
return true;
Sorry, something went wrong.
No branches or pull requests
When wrapping the
OverflowView
into aGestureDetector
, theonTap
callback is never called when tapping on the widget.I'm using Flutter (Channel beta, 3.13.0-0.2.pre) but I'm unsure it makes any difference
The text was updated successfully, but these errors were encountered: