赞
踩
import router from '@ohos.router'; @Entry @Component struct ButtonCase1 { build() { List({ space: 4 }) { ListItem() { Button("First").onClick(() => { router.pushUrl({ url: 'pages/first_page' }) }) .width('100%') } ListItem() { Button("Second").onClick(() => { router.pushUrl({ url: 'pages/second_page' }) }) .width('100%') } ListItem() { Button("Third").onClick(() => { router.pushUrl({ url: 'pages/third_page' }) }) .width('100%') } } .listDirection(Axis.Vertical) .backgroundColor(0xDCDCDC).padding(20) } }
运行结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。