#鸿蒙学习大百科#如何将图标小符号组件添加到Text中?

如何将图标小符号组件添加到Text中?

HarmonyOS
2024-10-26 09:33:34
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
自封的不算
@Entry
@Component
struct Index {
  build() {
    Column() {
      Text() {
        Span("Hello")
        SymbolSpan($r('sys.symbol.ohos_trash'))
          .fontWeight(FontWeight.Normal)
          .fontSize(30)
      }
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)

  }
}
分享
微博
QQ
微信
回复
2024-10-26 16:47:32
相关问题