美文网首页flutter
Flutter使用InkWell无水波纹效果

Flutter使用InkWell无水波纹效果

作者: 习惯了_就好 | 来源:发表于2021-03-29 17:26 被阅读0次

在InkWell的外层再套上Matetial 以及 Ink组件

Material(
  child: Ink(
    child:
      InkWell(
        onTap: () { },
        child: Container(
           height: 50.0,
           color: Colors.white,
           child: Text( "点击",
               maxLines: 1,
               style: TextStyle(color: color),
               overflow: TextOverflow.ellipsis,
               ),
          ),
      ),
    ),
  )

相关文章

网友评论

    本文标题:Flutter使用InkWell无水波纹效果

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