#鸿蒙通关秘籍#如何在Row容器中使用justifyContent属性让子元素均匀分布?

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

使用justifyContent(FlexAlign.SpaceBetween)属性可以让Row容器内的子元素在水平方向上均匀分布,确保第一个和最后一个元素分别与容器行首和行尾对齐。

bash Row({}) { Column() { }.width('20%').height(30).backgroundColor(0xF5DEB3)

Column() { }.width('20%').height(30).backgroundColor(0xD2B48C)

Column() { }.width('20%').height(30).backgroundColor(0xF5DEB3) }.width('100%').height(200).backgroundColor('rgb(242,242,242)').justifyContent(FlexAlign.SpaceBetween)

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