我想在产品上做这个功能,但我不知道怎么做,因为我太新鲜了.
这是我想要的画面
这是我的密码。
child: GridTile(
footer: Container(
color: Colors.white,
child: Row(
children: [
Expanded(
flex: 8,
child: Text(product_name),
),
Text("\$$product_price",
style: const TextStyle(fontWeight: FontWeight.w600)),
TextButton(
onPressed: (){
debugPrint('added to cart');
},
child: Text("ADD TO CARD"),
style: TextButton.styleFrom(
primary: Colors.lightBlue[800],
shadowColor: Colors.deepPurple,
// elevation: 5,
),
),
],
),
),
child: Image.asset(
product_picture,
fit: BoxFit.cover,
),
),
),
),
),这就是它的样子看上去怎么样
我会感谢你的帮助!
发布于 2022-01-12 22:01:54
https://stackoverflow.com/questions/70687313
复制相似问题