【发布时间】:2019-03-09 07:01:53
【问题描述】:
如何在 Flutter 中左对齐OutlineButton 图标?
Icon 可以按如下方式添加,但图标和文本都在按钮中居中对齐。有没有办法让图标左对齐,文本居中?
return new OutlineButton.icon(
onPressed: onPressed,
label: new Text(title),
icon: icon,
highlightedBorderColor: Colors.orange,
color: Colors.green,
borderSide: new BorderSide(color: Colors.green),
shape: new RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(5.0)));
【问题讨论】:
标签: flutter dart button alignment flutter-layout