Hello! Can you tell me what is the best way to work with text with more than 1000 characters (application for reference)?
I have a title and body text, I use:
Code Block let text1 = "title text" let text2 = """ body text """
and its display:
Code Block VStack { Text (text1) .modificator () Text (text2) .modificator () }
How can you localize for different countries?
Or are there more correct methods for displaying large text?