gpt4 book ai didi

flutter - 如何使用 inkwell 在 flutter 中进行填充

转载 作者:行者123 更新时间:2023-12-01 23:14:31 24 4
gpt4 key购买 nike

我试图在这两张图片之间添加填充,但无法这样做尝试在 child 中添加填充

enter image description here

class BrandSlider extends StatelessWidget {
final config;

const BrandSlider({required Key key, this.config}) : super(key: key);
@override
Widget build(BuildContext context) {
return SizedBox(
height: 100,
child: ListView.builder(
scrollDirection: Axis.horizontal,
itemBuilder: (context, index) {
return InkWell(
// splashColor: Colors.orange,
onTap: () {
ProductModel.showList(
context: context, brandIds: config['items'][index]['id']);
},
child: Image.network(config['items'][index]['image']),

);
},
itemCount: brands.length,
),
);
}
}

最佳答案

如果不起作用,请用填充物包裹墨水池,然后增加 SizedBox 的高度

Padding(padding:EdgeInsets.all(8.0),child:InkWell(
// splashColor: Colors.orange,
onTap: () {
ProductModel.showList(
context: context, brandIds: config['items'][index]['id']);
},
child: Image.network(config['items'][index]['image']),

));

关于flutter - 如何使用 inkwell 在 flutter 中进行填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69264296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com