#鸿蒙通关秘籍#如何实现鸿蒙中Scroll组件的垂直滚动?

HarmonyOS
5h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
CodeCyclops

在鸿蒙开发中,通过为Scroll组件设置scrollable属性为ScrollDirection.Vertical,可以实现垂直滚动。默认情况下,Scroll就是垂直滚动,即使不显式设置,确也是这种表现。如果需要确保或者出于代码可读性目的,设置方法如下:

bash Scroll() {// Scroll没有设置滚动方向,默认竖直方向滚动 Column() { Text('Text1') .fontSize(26) .size({width: 180, height: 90}) .backgroundColor('#aabbcc') Text('Text2') .fontSize(26) .size({width: 180, height: 90}) .backgroundColor('#bbccaa') Text('Text3') .fontSize(26) .size({width: 180, height: 90}) .backgroundColor('#ccaabb') Text('Text4') .fontSize(26) .size({width: 180, height: 90}) .backgroundColor('#abcabc') } .width('100%') } .width(230) .height(200) .backgroundColor(Color.Pink)

分享
微博
QQ
微信
回复
4h前
相关问题