我想把这4篇文章组织成一列,问题是它们是排成一行的。
AlertDialog alert = AlertDialog(
title: Text("Informações"),
content: Text("P - Selvagem ou Aguti"
"p - preto"
"A - Permite a pigmentação"
"a - Inibe a pigmentação (epistático)"),
actions: [
okButton,
],
backgroundColor: Colors.white,
);
如何把它们一个放在另一个下面?
4条答案
按热度按时间u7up0aaq1#
您可以使用三重引号:
您也可以使用**\n**作为新行:
您可以参考此链接了解更多信息:https://api.dartlang.org/stable/2.5.0/dart-core/String-class.html
2sbarzqh2#
在字符串中插入“\n”作为新行:
“p - preto\nA -允许着色\na - Inibe a pigmentação(书信)”
s71maibg3#
如果要对每一新行设置不同的样式,请将对话框的内容换行到列中
如果要对所有文本使用相同的样式,可以对新行使用\n
nbewdwxp4#
您也可以使用RichText ...例如: