我开始从事一个大项目,所以我的问题是我可以将列表视图的方向更改为 RTL,
new ListTile(
trailing: new Icon(Icons.keyboard_arrow_right),
onTap: onTab,
leading: new Icon(Icons.account_circle),
title: new Text("Test"),
);
我开始从事一个大项目,所以我的问题是我可以将列表视图的方向更改为 RTL,
new ListTile(
trailing: new Icon(Icons.keyboard_arrow_right),
onTap: onTab,
leading: new Icon(Icons.account_circle),
title: new Text("Test"),
);
您可以为 UI 的任何子树指定方向:
new Directionality(textDirection: TextDirection.rtl,
child: new ListTile(...))
另请参阅https://docs.flutter.io/flutter/widgets/Directionality-class.html