fixed quick reply overlay issue on iOS

This commit is contained in:
Sadaqat Ali 2022-08-28 23:58:38 +05:00
parent 25733c67ac
commit 21169df19a

View File

@ -26,7 +26,7 @@ export const InputSupportModal = ({children, visible, onClose}: InputSupportModa
{
Platform.select({
ios: (
<KeyboardAvoidingView behavior="padding">
<KeyboardAvoidingView behavior="padding" style={{backgroundColor: 'rgba(0, 0, 0, 0.2)'}}>
{children}
</KeyboardAvoidingView>
),