flutter 因包裹而无法出现水波问题
2019-07-23 本文已影响0人
奋斗的小蜗牛yyl
在外层包裹Material
Material(
color: Color(0xff16AD90),
child: InkWell(
onTap: (){},
child: Container(
child: SizedBox(
width: 335,
height: 50,
child: Container(
child: Center(
child: Text(
'立即领卡',
style: TextStyle(
fontSize: 18,
color: Colors.white
),
),
),
),
),
),
),
)