This commit is contained in:
2025-10-03 14:30:13 +02:00
parent 37fe6dd477
commit ce262f2d07
+7 -3
View File
@@ -241,7 +241,11 @@ const ShareModal = ({ payload }) => {
intensity={40}
{...blurProps}
>
<Pressable onPress={closeSheet} style={styles.closeButton} hitSlop={8}>
<Pressable
onPress={closeSheet}
style={styles.closeButton}
hitSlop={8}
>
<Feather name="x" size={18} color={Palette.white} />
</Pressable>
<Text style={styles.heading}>{heading}</Text>
@@ -273,7 +277,7 @@ const ShareModal = ({ payload }) => {
{copied ? <Text style={styles.copiedText}>Lien copié</Text> : null}
</BlurView>
<BlurView intensity={70} style={styles.card} {...blurProps}>
<BlurView intensity={90} style={styles.card} {...blurProps}>
<Text style={styles.sectionHeading}>{sectionTitle}</Text>
<View style={styles.optionsList}>
{shareOptions.map((option, index) => {
@@ -282,7 +286,7 @@ const ShareModal = ({ payload }) => {
<BlurView
key={option?.key || index}
style={styles.optionBlur}
intensity={40}
intensity={100}
{...blurProps}
>
<Pressable