Remove flickering when closing a modal

This commit is contained in:
Maarten 2024-08-12 12:52:37 +02:00
parent f0f99d0767
commit 463f8e6bac
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ const CustomModal: React.FC<EditModalProps> = ({ title, visible, onClose, onSave
};
return (
<Modal isVisible={visible}>
<Modal isVisible={visible} useNativeDriverForBackdrop={true}>
<ThemedView style={{ ...styles.view, backgroundColor: Colors[ colorScheme ].background }}>
<ThemedText style={styles.text}>{title ? title : 'Pas je gegevens aan:'}</ThemedText>