You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
when I try to put Math.tex in a button, the font of the letters is automatically changed. Below is an image where on the left I created an InkWell with Math.tex (which maintains the classic Math.tex font), and on the right a TextButton with Math.tex
As you can see the fonts are different, I would like the classic Math.tex font to be kept in a button as well, how can I do this?
Hi,
when I try to put Math.tex in a button, the font of the letters is automatically changed. Below is an image where on the left I created an InkWell with Math.tex (which maintains the classic Math.tex font), and on the right a TextButton with Math.tex
As you can see the fonts are different, I would like the classic Math.tex font to be kept in a button as well, how can I do this?
InkWell( onTap: () {}, child: Align( alignment: Alignment.center, child: Math.tex( r"abc", ), ), ),
TextButton( onPressed: () => {}, child: Math.tex( r"abc", ), ),
The text was updated successfully, but these errors were encountered: