Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Flutter 应用程序中,我添加了对英语、阿拉伯语和中文的支持。我在列表视图中显示这三个文本小部件。我想仅在 RTL 模式下显示阿拉伯语文本(没有方向性小部件)。对此有什么建议吗?
实际输出:
预期产出
您可以通过用小部件text包装小部件位置来固定小部件位置Align
text
Align
Align( alignment: Alignment.centerRight, child: Text( 'عربى', ), ),
或者更改textAlign属性
textAlign
Text( 'عربى', textAlign: TextAlign.right, ),