Flutter UI基础 - Widgets 之 InkWell 和 Ink

InkWell

InkWell组件在用户点击时出现“水波纹”效果,InkWell简单用法:

InkWell(
    onTap: (){},
    child: Text('这是InkWell点击效果'),
)

onTap是点击事件回调,如果不设置无法出现“水波纹”效果,效果如下:

 

设置水波纹颜色: 

InkWell(
    onTap: () {},
    splashColor: Colors.red,
    ...
)

效果如下:

 

 

 

设置高亮颜色: 

InkWell(
    onTap: () {},
    highlightColor: Colors.blue,
    ...
)

高亮颜色是按住时显示的颜色,效果如下:

给字体添加边距和圆角边框,扩大“水波纹”效果:

InkWell(
    onTap: (){},
    child: Container(
      padding: EdgeInsets.symmetric(horizontal: 20,vertical: 8),
      decoration: BoxDecoration(
        border:Border.all(color: Colors.blue),
        borderRadius: BorderRadius.all(Radius.circular(30))
                
      ),
      child: Text('这是InkWell点击效果'),
    ),
)

效果如下:

发现“水波纹”超出的了圆角边框,如何解决这个问题呢?Ink隆重登场。

Ink

Ink的官方解释:

A convenience widget for drawing images and other decorations on [Material] widgets, so that [InkWell] and [InkResponse] splashes will render over them.

简单翻译:Ink控件用于在[Material]控件上绘制图像和其他装饰,以便[InkWell]、[InkResponse]控件的“水波纹”效果在其上面显示。

上面的问题修改代码如下:

Ink(
    decoration: BoxDecoration(
       gradient: LinearGradient(
       begin: Alignment.topLeft,
       end: Alignment.bottomRight,
       colors: [Color(0xFFDE2F21), Color(0xFFEC592F)]),
       borderRadius: BorderRadius.all(Radius.circular(20))),
    child: InkWell(
      borderRadius: BorderRadius.all(Radius.circular(20)),
      child: Container(
        padding: EdgeInsets.symmetric(vertical: 8, horizontal: 20),
        child: Text(
          '这是InkWell的点击效果',
          style: TextStyle(color: Colors.white),
        ),
    ),
    onTap: () {},
  ),
)

效果如下:

 

 

 

 

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值