#鸿蒙通关秘籍#如何在鸿蒙中让Flex容器的子元素在主轴方向进行反向排列?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
SEM晨光熹微

Flex组件中,设置directionFlexDirection.RowReverse或者FlexDirection.ColumnReverse,使子元素沿着主轴的反方向排列。 bash Flex({ direction: FlexDirection.RowReverse }) { Text('1').width('33%').height(50).backgroundColor(0xF5DEB3) Text('2').width('33%').height(50).backgroundColor(0xD2B48C) Text('3').width('33%').height(50).backgroundColor(0xF5DEB3) } .height(70) .width('90%') .padding(10) .backgroundColor(0xAFEEEE)

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