// entry/src/main/ets/view/SplashWxUniMpView.ets @Component export struct SplashWxUniMpView { build() { Stack() { Image($r('app.media.ic_splash_wx_unimp')) .width('100%') .height('100%') .objectFit(ImageFit.Cover) // 建议使用 Cover 保持无白边拉伸 .syncLoad(true) // 关键:强制同步解码,防止在窗口出现时闪烁白屏 } .width('100%') .height('100%') } }