官方文档:按钮 (Button)
目录标题
ButtonType
胶囊类型(Capsule)・圆形按钮(Circle)・普通按钮(Normal)・自定义
Column({ space: 10 }) {
Text('Normal').fontSize(20).fontColor(Color.Black).width('90%');
Button('Ok', { type: ButtonType.Normal }).width(90).height(40);
Text('Capsule').fontSize(20).fontColor(Color.Black).width('90%');
Button('Ok', { type: ButtonType.Capsule }).width(90).height(40);
Text('Circle').fontSize(20).fontColor(Color.Black).width('90%');
Button('Ok', { type: ButtonType.Circle }).width(70).height(70);
Text('自定义').fontSize(20).fontColor(Color.Black).width('90%');
Button('Ok', { type: ButtonType.Normal }).width(70).height(70).borderRadius(20);
}.width('100%').height('100%').backgroundColor(Color.Pink)