for my own application, thank you for your help.
I’m designing a language learning app.
I would like to thank those who will help me with such a design.
It is very important for me to keep the design as it is. If you want detailed information, you can contact me.
2
Answers
small changes in this custom design to get exact card design like your image.
pass these fields and get the result .
containerDesign({Color bgColor=Colors.transparent,String image=”,String text=”}){
return Container(decoration:BoxDecoration(borderRadius:BorderRadius.circular(20),
color:bgColor,image:DecorationImage(image: AssetImage(image))),
child:Column(children: [
Text(text)
]),
);
}
Its hard to code it exactly like that, but here is a quick solution:
You can edit the parameters to fit your style.