Tips & Tricks
Changing the iOS status bar color
document.body.style.backgroundColor = "#YOUR_BACKGROUND_COLOR";export const YourMiniappComposerComponent = ({ model, done }:
useEffect (() => {
document.body.style.backgroundColor = "#YOUR_BACKGROUND_COLOR";
return () => {
document.body.style.backgroundColor = "#FFFFFF";
}
})
)Last updated