Commit d057343b authored by Devon Carew's avatar Devon Carew

update double tap reference

parent 8a256abd
...@@ -205,7 +205,7 @@ class _RenderInkSplashes extends RenderProxyBox { ...@@ -205,7 +205,7 @@ class _RenderInkSplashes extends RenderProxyBox {
} }
void _syncTapRecognizer() { void _syncTapRecognizer() {
if (onTap == null && doubleTap == null && onLongPress == null) { if (onTap == null && onDoubleTap == null && onLongPress == null) {
_disposeTapRecognizer(); _disposeTapRecognizer();
} else { } else {
_tap ??= new TapGestureRecognizer(router: FlutterBinding.instance.pointerRouter) _tap ??= new TapGestureRecognizer(router: FlutterBinding.instance.pointerRouter)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment