RaisedButton(MaterialButton派生的)按钮之间就会自动留出间隙,怎么搞的,怎么能去掉呢
来源:11-3 Flutter Android混合开发实战-集成与调用【Android技术与Flutter融合】
教练
2019-05-03
写回答
2回答
-
RaisedButton的特性,目前还不支持去掉
00 -
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,老师没讲的,我讲
00
相似问题