中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现一个可以选中的Button?
微信扫码分享
@Entry @Component struct Index { build() { Column() { Toggle({ type: ToggleType.Button, isOn: false }) { Text('status button') .fontColor('#182431') .fontSize(12) }.width(100) Toggle({ type: ToggleType.Button, isOn: true }) { Text('status button') .fontColor('#182431') .fontSize(12) }.width(100) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }