To add a modal background with React Native, we add the Modal component.
For instance, we write
<Modal
theme={{
colors: {
backdrop: 'transparent',
},
}}
{...otherProps}
>
{children}
</Modal>
to add the Modal component with the children prop as its content.
We set the backdrop color by setting the colors.backdrop property in theme.