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

multline text #16

Closed greatsam4sure closed 4 months ago

greatsam4sure commented 4 months ago

I am using Latext for an App. I could not get it to display multiline text. All my text is just in one line. Given that the Text widget can display multiline text, I thought multiline text should be natural with Latext

greatsam4sure commented 4 months ago

Normal text can display multiline but the equation does not wrap. I know that I can achieve multiline with $$

greatsam4sure commented 4 months ago

The problem to me is that I need the widget Latext to wrap the equation automatically.

$ \begin{aligned} \text{This equation is beautiful: } NaOH(aq)+H_2SO_4(aq) \to Na_2SO_4(aq)+2H_2O(l) \text{ The above reaction is a neutralization reaction. Neutralization reaction is a reaction between an acid and a base to form salt and water only } \end{aligned} $

equ

greatsam4sure commented 4 months ago

I just found out that the equation scrolls naturally, so the user can just scroll horizontally to see the whole equation. That solves my problem