I'd keep the white background saw prior to the upgrade
A dark black background presents in multiple screens Example screen:

If I rollback to 6.12.2 the black screen reverts to white background (which is as expected)
Happy to provide a repro if you think that this is not just a configuration issue, or just something strange with old hardware.
Could you try setting both layout.componentBackgroundColor and layout.backgroundColor to white in your default options or screens?
Thanks, I shall try this and report back findings.
No luck with either of those settings with 7.2. Pasted code below in case I have not understood where in the options hash I should put the layout key.
const warmer = {
root: {
stack: {
children: [
{
component: {
name: 'chapel.startup',
options: {
topBar: { visible: false }
}
}
}
]
},
options: {
layout: {
backgroundColor: Colors.white,
componentBackgroundColor: Colors.white
}
}
}
}
Hey @juddey 馃憢
That should have worked, have you tried specifying these in default options? Also, I would try only specifying componentBackgroundColor.
hey thanks @guyca, setting the backgroundColor prop on setDefaultOptions fixed the issue. I'll close this out now.
@juddey Alternatively you can set background color directly on the components in JSX.
Most helpful comment
Hey @juddey 馃憢
That should have worked, have you tried specifying these in default options? Also, I would try only specifying
componentBackgroundColor.