美文网首页
flutter设置圆角有宽高按钮

flutter设置圆角有宽高按钮

作者: 男人宫 | 来源:发表于2021-04-13 14:11 被阅读0次
    Container(
          margin: EdgeInsets.symmetric(horizontal: kSet_Height(10)),
          height: kSet_Height(40),
          width: double.infinity,
          child: RaisedButton(
            shape: RoundedRectangleBorder(
              borderRadius: BorderRadius.circular(kSet_Height(3)),
            ),
            color: AppColors.kColor_NavgationBar,
            child: Text("退出登录",style: TextStyle(color: Colors.white,fontSize: kSet_SizeFont(16)),),
            onPressed: (){
             loginout(context);
            },
          ),
        )
    

    相关文章

      网友评论

          本文标题:flutter设置圆角有宽高按钮

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