赞
踩
InkWell(
onTap: () {},
splashColor: Colors.red,
child: const Padding(
padding: EdgeInsets.all(10),
child: Text("InkWell水波纹效果"),
),
)
InkWell(
onTap: () {},
highlightColor: Colors.blue,
child: const Padding(
padding: EdgeInsets.all(10),
child: Text("InkWell高亮效果"),
),
)
InkWell(
onTap: () {},
splashColor: Colors.red,
highlightColor: Colors.blue,
child: const Padding(
padding: EdgeInsets.all(10),
child: Text("InkWell混合效果"),
),
)
Ink( decoration: const BoxDecoration( gradient: LinearGradient( colors: [Color(0xFFDE2F21), Color(0xFFEC592F)], ), borderRadius: BorderRadius.all(Radius.circular(20)), ), child: InkWell( onTap: () {}, borderRadius: const BorderRadius.all(Radius.circular(20)), child: Container( padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 20), child: const Text( "Ink&InkWell", style: TextStyle(color: Colors.white), ), ), ), )
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。