znjameswu / flutter_math

Math rendering and editing in pure Flutter.
https://znjameswu.github.io/flutter_math_demo/
Apache License 2.0
123 stars 52 forks source link

Square root claims gestures (web only) #42

Open edhom opened 3 years ago

edhom commented 3 years ago

A button displaying a square root does not respond since the square root claims the gesture. The following does not work:

GestureDetector(
  onTap: () => print('This button responds'),
  child: Math.tex(r'\sqrt{2}'),
)