I'm using firebase to store strings and display them as LocalizedString Text in my SwiftUI view.
Problem is newline characters \n are not being recognized.
Below is the code, can you help :
Firebase string field i.e learningcontent field
This is the first line \n this is the second line
ViewModel :
self.learningContent = LocalizedStringKey(String(document.get("learningcontent") as? String ?? "" ))
Swiftui code :
Text(learningContent) .lineSpacing(10)
View Output : This is the first line \n this is the second line
Problem : \n is not recognized and text is only displayed in one line.
String displayed over multiple lines