AboutPageUI.ets 1.08 KB
const TAG = 'AboutPageUI';

@Component
export  struct AboutPageUI {
  @State message: string = '京ICP备16066560号-6A   Copyright © 人民日报客户端\nall rights reserved.'
  @State version: string = '版本号:v8.0.1.1'


  build() {
    Column() {
      Image($r('app.media.setting_about_logo'))
        .width('278lpx')
        .height('154lpx')
        .margin({top:'173lpx',bottom:'154lpx'})

      Row(){

      }.backgroundColor(Color.Yellow)
      .width('100%')
      .height('97lpx')

      Row(){

      }.backgroundColor(Color.Yellow)
      .width('100%')
      .height('97lpx')

      Blank()

      Image($r('app.media.app_icon'))
        .width('192lpx')
        .height('192lpx')

      Text(this.version)
        .fontSize('25lpx')
        .textAlign(TextAlign.Center)
        .fontColor($r("app.color.color_666666"))
        .margin({bottom:'31lpx'})

      Text(this.message)
        .fontSize('19lpx')
        .textAlign(TextAlign.Center)
        .fontColor($r("app.color.color_999999"))
        .margin({bottom:'35lpx'})
    }
    .width('100%')
    .height('100%')
  }
}