gpt4 book ai didi

flutter - 如何改变 flutter 中卡片的高度

转载 作者:行者123 更新时间:2023-12-02 17:00:12 31 4
gpt4 key购买 nike

Card(
semanticContainer: true,
clipBehavior: Clip.antiAliasWithSaveLayer,
child: Image.network( 'https://placeimg.com/640/480/any',fit: BoxFit.fill),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
elevation: 5,
margin: EdgeInsets.all(10),
)

最佳答案

要修改卡片的宽度或高度,您可以将其包装在容器小部件中并为其提供高度和/或宽度属性。

请参阅下面用高度为 500 的容器包装的代码:

Container(
height: 500,
child: Card(
semanticContainer: true,
clipBehavior: Clip.antiAliasWithSaveLayer,
child: Image.network(
'https://placeimg.com/640/480/any', fit: BoxFit.fill,),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
elevation: 5,
margin: EdgeInsets.all(10),
),
),

关于flutter - 如何改变 flutter 中卡片的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58115148/

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