flutter_math
flutter_math copied to clipboard
Square root only displays on the second frame (web only)
If you rebuild every frame, the square root cannot be displayed at all.
AnimatedBuilder(
animation: _someAnimationController,
builder: (context, child) {
return Math.tex(r'\sqrt{2}');
},
)