Line Breaks in Long Text Flutter

前端 未结 3 1882
伪装坚强ぢ
伪装坚强ぢ 2021-02-07 05:01

How can I create line breaks within a long Text widget?

For example, I am creating a biographical page about myself. And I have three paragraphs I want to be able to dis

3条回答
  •  长情又很酷
    2021-02-07 05:56

    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.

提交回复
热议问题