美文网首页
flutter appbar leading 宽度不能控制

flutter appbar leading 宽度不能控制

作者: 我是数据链路层 | 来源:发表于2020-07-06 14:59 被阅读0次

用title布局

return Scaffold(
      backgroundColor: Colors.white,
      appBar: AppBar(
        backgroundColor: Colors.white,
        elevation: 0,
        titleSpacing: 0.0,//title widget两边不留间隙
        title: Container(
          color: Colors.red,
          child: ListTile(
            title: Text('左侧按钮自定义'),
          )
        ),
        actions: <Widget>[
          FlatButton(onPressed: (){}, child: Icon(Icons.phone_in_talk))
        ],
      ),
    );

相关文章

网友评论

      本文标题:flutter appbar leading 宽度不能控制

      本文链接:https://www.haomeiwen.com/subject/qagwqktx.html