Aprenda como fazer quebra de linha em texto longo no Flutter.
final String someText =
"stuff for the 1st paragraph\n\n"
"stuff for the 2nd paragraph\n\n"
"stuff for the 3rd paragraph\n\n";
ou então você pode simplesmente renderizá-lo dentro de um Textwidget como normalmente faria.
Fonte: https://stackoverflow.com/questions/51733023/line-breaks-in-long-text-flutter
Top comments (0)