美文网首页
flutter button

flutter button

作者: neobuger | 来源:发表于2023-01-30 09:51 被阅读0次

    去除水波纹

    IconButton

               highlightColor: Colors.transparent,
                  splashColor: Colors.transparent,
    

    TextButton

    TextButton(
                          onPressed: () {
    
                          },
                          style: ButtonStyle(
                            overlayColor: MaterialStateProperty.all<Color>(Colors.transparent),
                          ),
                          child: Row(
                            children: [
                              Expanded(
                                child: Text(
                                    "请选择",
                                    textAlign: TextAlign.start,
                                    style: TextStyle(color: Color(0xff666666),
                                    )
                                ),
                              )
                            ],
                          )
    
                      )
    

    相关文章

      网友评论

          本文标题:flutter button

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