#鸿蒙学习大百科#如何实现一个可以选中的Button?

如何实现一个可以选中的Button?

HarmonyOS
2024-10-25 09:42:25
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
重庆大镖客
@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)
  }
}
分享
微博
QQ
微信
回复
2024-10-25 16:37:29
相关问题