当前位置: 首页 > 工具软件 > Aspect Ratio > 使用案例 >

Flutter中的 AspectRatio(aspectRatio: 1/2),组件和Card组件

东郭宏朗
2023-12-01

1:AspectRatio组件,可以控制子元素在父亲元素中的宽高比,让子元素布局和显示更加完美:

 AspectRatio(aspectRatio: 1/2,child:Container()),child属性对应的container组件相对于在它的父组件中显示宽高比例为 1:2

2:Card组件,类似于卡片效果,周边有阴影的那种效果,配合listview中的listile使用做列表效果,用法:

Card()

属性如下:

this.color,

this.shadowColor,

this.elevation,

this.shape,

this.borderOnForeground = true,

this.margin,

this.clipBehavior,

this.child,

this.semanticContainer = true,

 类似资料: