declare your text like so:
final String someText =
"stuff for the 1st paragraph\n\n"
"stuff for the 2nd paragraph\n\n"
"stuff for the 3rd paragraph\n\n";
and then you can just render it inside of a Text
widget like you normally would.
declare your text like so:
final String someText =
"stuff for the 1st paragraph\n\n"
"stuff for the 2nd paragraph\n\n"
"stuff for the 3rd paragraph\n\n";
and then you can just render it inside of a Text
widget like you normally would.