scroller :控制器
direction : 方向
state :方式 on off auto
ScrollBar({
scroller : this.scrollController,
state : BarState.On,
direction:ScrollBarDirection.Horizontal
}){
Text('滚动条')
.height(24)
.backgroundColor(Color.Orange)
.textAlign(TextAlign.Center)
}.width(300).height(24)
.backgroundColor(Color.Pink)
ScrollBar({
scroller : this.scrollController,
state : BarState.On,
direction:ScrollBarDirection.Vertical
}){
Text('滚动条')
.width(24)
.backgroundColor(Color.Orange)
.textAlign(TextAlign.Center)
}.width(24).height(300)
.backgroundColor(Color.Pink)