djade007 / latext

A flutter package to efficiently display scientific LaTeX equations using the flutter_math library, without relying on WebView or JavaScript.
European Union Public License 1.2
12 stars 5 forks source link

Math equation style parameter and fix horizontally overflowing math equations #10

Closed nicolas-ferrada closed 7 months ago

nicolas-ferrada commented 7 months ago

I had a problem, I needed the equations to have a different style from the text while reading the LaTeX document. So I added a parameter that gives the oportunity to change the textstyle of the math equation. If no parameter is given, the LaTeX style will be used as normal.

Also the big math equations were overflowing, so I added a SingleChildScrollView for horizontal scrolling to avoid this when it happens. I did not add any visual indicator of when a math equation is or is not scrollable, so it might be a little confusing. I might work on it later.