自定义步进器可以用于数量选择、价格调整等场景。@Entry @Component struct CustomStepperApp { @State value: number = 1; increment() { this.value++; } decrement() { this.value--; } build() { return ( <UI.Page> <UI.Label text="Custom Stepper" /> <UI.Button text="Decrement" onClick={() => this.decrement()} /> <UI.Label text={this.value.toString()} /> <UI.Button text="Increment" onClick={() => this.increment()} /> </UI.Page> ); } }本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
自定义步进器可以用于数量选择、价格调整等场景。
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。