HarmonyOS flutter app启动目前是白色背景,是否可自定义样式?

app启动进入首页前有白屏情况 是否可以自定义样式(logo+纯色背景)。

HarmonyOS
2024-10-25 11:32:45
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

在moudle.json5里面。

"abilities": [  
{  
  "name": "EntryAbility",  
"srcEntry": "./ets/entryability/EntryAbility.ets",  
"description": "$string:EntryAbility_desc",  
"icon": "$media:ic_eshop",  
"label": "$string:EntryAbility_label",  
"startWindowIcon": "$media:ic_eshop",  
"startWindowBackground": "$color:start_window_background",  
"exported": true,  
"skills": [  
  {  
    "entities": [  
    "entity.system.home"  
    ],  
    "actions": [  
    "action.system.home"  
    ]  
  }  
  ]  
}  
]

更改背景色。

"startWindowBackground": "$color:start_window_background"

更改图片。

"icon": "$media:ic_eshop"

开发者白屏需要自己定义下页面加载样式。

@Builder  
componentBuilder() {  
  // 自定义加载界面的样式  
  Column() {  
    Text("Loading...")  
  }  
}

参考链接:

https://gitee.com/openharmony-sig/flutter_engine/pulls/205

分享
微博
QQ
微信
回复
2024-10-25 15:13:07
相关问题
如何去除自定义弹窗的白色背景
2246浏览 • 1回复 待解决
CounterComponent的样式是否可以自定义
170浏览 • 1回复 待解决
HarmonyOS 自定义Slider样式
237浏览 • 1回复 待解决
HarmonyOS如何自定义视频组件样式
356浏览 • 1回复 待解决
鸿蒙组件toast自定义样式
8688浏览 • 1回复 待解决
HarmonyOS 自定义Dialog背景色透明问题
783浏览 • 1回复 待解决
如何自定义滚动条的样式
464浏览 • 1回复 待解决
如何自定义Video组件控制栏样式
2289浏览 • 1回复 待解决
自定义弹框,遮罩背景颜色无法设置
250浏览 • 1回复 待解决