#鸿蒙通关秘籍#在鸿蒙中如何让Flex布局的子元素超出空间时缩小自己?

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

使用flexShrink属性,当空间不足时该属性决定了子元素缩小的优先比例。 bash Flex({ direction: FlexDirection.Row }) { Text('flexShrink(3)') .flexShrink(3) .width(200) .height(100) .backgroundColor(0xF5DEB3)

Text('no flexShrink') .width(200) .height(100) .backgroundColor(0xD2B48C)

Text('flexShrink(2)') .flexShrink(2) .width(200) .height(100) .backgroundColor(0xF5DEB3)
} .width(400) .height(120) .padding(10) .backgroundColor(0xAFEEEE)

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