Flutter:Inkwell不适用于Card

Flutter:Inkwell不适用于Card,第1张

Flutter:Inkwell不适用于Card

说明:

“发生的事情是Material规范说飞溅实际上是在Material上的墨水。因此,当我们飞溅时,我们所做的就是从字面上使Material部件执行飞溅。如果您在Material之上有东西,我们溅在它下面,你看不到它。”

解决方法:

return Stack(children: <Widget>[ new Card(   child: new Padding(     padding: new EdgeInsets.all(15.0),     child: new Column(       children: <Widget>[         new SizedBox(height: 184.0,child: new Stack(  children: <Widget>[    new Positioned.fill(      child: new Image.asset(        imagePath,        //package: destination.assetPackage,        fit: BoxFit.contain,      ),    ),  ],),         ),         new Padding(padding: new EdgeInsets.all(  7.0,),child: new Text(  cardTitle,  style: new TextStyle(      fontSize: 14.0,      fontWeight: FontWeight.w600,      color: Colors.black87),),         ),         new Padding(padding: new EdgeInsets.all(  0.0,),child: new Text(  cardTag,  style: new TextStyle(      fontSize: 12.0,      fontWeight: FontWeight.w400,      color: Colors.black54),),         ),       ],     ),   ), ), new Positioned.fill(     child: new Material(         color: Colors.transparent,         child: new InkWell(onTap: () => null,         )))          ]);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4955363.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存