#鸿蒙通关秘籍#怎样利用justifyContent在Column容器中实现子元素的垂直均匀分配?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
LogicLion

使用justifyContent(FlexAlign.SpaceAround)属性可以使子元素在垂直方向上均匀分配,并保持相邻元素之间的间距相等:

bash Column({}) { Column() { }.width('80%').height(50).backgroundColor(0xF5DEB3)

Column() { }.width('80%').height(50).backgroundColor(0xD2B48C)

Column() { }.width('80%').height(50).backgroundColor(0xF5DEB3) }.width('100%').height(300).backgroundColor('rgb(242,242,242)').justifyContent(FlexAlign.SpaceAround)

分享
微博
QQ
微信
回复
2天前
相关问题