公共样式提取到一个公共的文件中

是否能将多个样式提取到一个公共文件。提供给多个ets文件使用(例如H5中的.css文件,可提供给多个h5页面引入使用)。

HarmonyOS
2024-09-23 13:01:20
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

attributeModifier当前支持封装一个样式导出供其他组件使用,示例如下:

// CommonAttribute.ets  
export class TitleTextAttribute implements AttributeModifier<TextAttribute> {  
  applyNormalAttribute(instance: TextAttribute): void {  
    instance.backgroundColor(Color.Black)  
    instance.fontColor(Color.White)  
    instance.fontSize(40)  
  }  
}  
  
// Index.ets  
import { TitleTextAttribute } from './CommonAttribute'  
  
@Entry  
@Component  
struct Index {  
  @State modifier: TitleTextAttribute = new TitleTextAttribute()  
  build() {  
    Row() {  
      Column() {  
        Text('Hello World')  
          .attributeModifier(this.modifier)  
      }  
      .width('100%')  
    }  
    .height('100%')  
  }  
}
分享
微博
QQ
微信
回复
2024-09-23 18:34:21
相关问题
java怎么读取公共目录下文件
2197浏览 • 1回复 待解决
HarmonyOS 公共组件封装
302浏览 • 1回复 待解决
用户订阅系统公共事件
957浏览 • 1回复 待解决
如何实现一个仪表盘样式组件?
333浏览 • 1回复 待解决
公共事件有哪些简单使用
835浏览 • 1回复 待解决
公共事件实现跨进程通信
769浏览 • 1回复 待解决
如何实现一个自定义样式toast提示
1846浏览 • 1回复 待解决
有那种公共标题返回标题控件吗
1682浏览 • 1回复 待解决
公共事件生命周期是怎样
1481浏览 • 1回复 待解决
如何实现一个月食样式进度条?
273浏览 • 1回复 待解决
没有专类Post请求接口公共请求
2913浏览 • 1回复 待解决