Flutter UI基础 - AppBar中标题文字如何居中

ios下AppBar中的标题默认是居中对齐,而在安卓下AppBar中的标题默认是左对齐。如果想统一居中对齐,参考以下示例代码:

AppBar(
  centerTitle: true, // 标题居中
  ...
)

 

你可能感兴趣的:(Flutter)