I am pulling some text from Firebase with many \n 's in it. However, when the text is displayed on the preview app, it just shows as"\n" and doesn’t actually create a new line. I tried to look online but I don’t really see anything that helps. What can I do to make actual new lines?
The text from firebase shouldn’t have /n. They are hidden and automatically taken into account during display.
The /n you have are “hard coded”. You shouldn’t have them.
I’m not too sure what you mean by “hard coded”. Anyways, I think I’ve found a solution. I just put a # wherever I want a new line (on the Firebase side), and then I take the string value I get from the data variable and replace each # with \n (on the AppGyver side).