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

Latex will show error when it too long #2

Closed Myster7494 closed 1 year ago

Myster7494 commented 1 year ago

When it too long,it will out the width of the device. Can it auto change line?

djade007 commented 1 year ago

The overflow error is coming from the flutter_math package.

I'll recommend splitting the LaTex equation. Alternatively, you can wrap the equation with a SingleChildScrollView widget to enable scrolling and prevent overflow errors.

Myster7494 commented 1 year ago

Thanks a lot.