flutter_math
flutter_math copied to clipboard
Square root claims gestures (web only)
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}'),
)