我开始使用flutter markdown,但是我想证明内容的合理性,直到现在我还是不能。
我尝试使用.ini
和Center
,但没有用。
Alignment
答案 0 :(得分:4)
可以使用flutter_markdown设置正确的文本对齐方式。
var style = MarkdownStyleSheet(
textAlign: WrapAlignment.center,
h1Align: WrapAlignment.center,
);
Markdown(
styleSheet: style,
data: '# header1 is center-aligned\ntext body is also center-aligned'
);
您可以使用MarkdownStyleSheet类提供的所有其他可选参数来自定义样式。
答案 1 :(得分:1)
暂时不可用,用于更改 flutter_markdown 0.2.0 中的文本对齐方式。 您必须联系此插件的作者才能请求此功能。
但是如果您需要快速修复,则可以在以下文件的源代码中添加Accounts
属性:https://github.com/flutter/flutter_markdown/blob/master/lib/src/builder.dart
代码行: 345
textAlign: TextAlign.center
结果:
要以更优雅的方式,您必须克隆此插件的git存储库,直接附加到您的项目中,并自行添加文本对齐功能。
祝你好运!