如何用 Flutter 设计这样的卡片

问题描述 投票:0回答:1

我需要这样的设计

enter image description here

对于我自己的申请,谢谢您的帮助。 我正在设计一个语言学习应用程序。 我要感谢那些帮助我进行这样的设计的人。 保持设计原样对我来说非常重要。如果需要详细信息可以联系我

flutter dart user-interface mobile
1个回答
-1
投票

对此定制设计进行一些小改动,以获得与您的图像完全相同的卡片设计。 传递这些字段并得到结果。

containerDesign({Color bgColor=Colors.transparent,字符串图像='',字符串文本=''}){ 返回容器(装饰:BoxDecoration(borderRadius:BorderRadius.circular(20), 颜色:bgColor,图像:DecorationImage(图像:AssetImage(图像))), 子项:列(子项:[ 文字(文字) ]), ); }

© www.soinside.com 2019 - 2024. All rights reserved.