Flutter控件——布局控件:卡片
Posted wzj_what_why_how
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter控件——布局控件:卡片相关的知识,希望对你有一定的参考价值。
Card
卡片式布局默认是撑满整个外部容器的,如果你想设置卡片的宽高,需要在外部容器就进行制定。
card.dart 源码
class Card extends StatelessWidget
/// Creates a material design card.
///
/// The [elevation] must be null or non-negative. The [borderOnForeground]
/// must not be null.
const Card(
Key? key,
this.color,
this.shadowColor,
this.elevation,
this.shape,
this.borderOnForeground = true,
this.margin,
this.clipBehavior,
this.child,
this.semanticContainer = true,
)
以上是关于Flutter控件——布局控件:卡片的主要内容,如果未能解决你的问题,请参考以下文章