RaisedButton(MaterialButton派生的)按钮之间就会自动留出间隙,怎么搞的,怎么能去掉呢

来源:11-3 Flutter Android混合开发实战-集成与调用【Android技术与Flutter融合】

教练

2019-05-03

写回答

2回答

CrazyCodeBoy

2019-05-03

RaisedButton的特性,目前还不支持去掉

0
0

LovelyChubby

2020-03-02

_buildMsgCodeButton() {
  return SizedBox(
      width: 80,
      height: 28,
      child: RaisedButton(
        child: Text(
          StringRes.get_msg_code,
          style: TextStyle(fontSize: 12, color: Colors.white),
        ),
        textColor: Colors.white,
        color: _themeColor,
        disabledColor: _disableColor,
        onPressed: _msgCodeEnable ? _getMsgCode() : null,
        padding: EdgeInsets.all(0),
        shape: RoundedRectangleBorder(
            side: BorderSide.none,
            borderRadius: BorderRadius.all(Radius.circular(40))),
      ));
}

使用sizeBox,老师没讲的,我讲

0
0

Flutter从入门到进阶 实战携程网App 一网打尽核心技术

解锁Flutter开发新姿势,,系统掌握Flutter开发核心技术。

4788 学习 · 3270 问题

查看课程