1 个回答

button不支持maxFontScale属性,可以嵌套Text实现。

参考demo如下:

@Entry
@Component
struct ButtonTest {
  build() {
    Column(){
      Button(){
        Text('buttonafaffwqf')
          .fontSize(16)
          .maxFontScale(3.2)
          .margin(10)
          .fontColor(Color.Yellow)
      }
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}