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} intensity={40}
{...blurProps} {...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} /> <Feather name="x" size={18} color={Palette.white} />
</Pressable> </Pressable>
<Text style={styles.heading}>{heading}</Text> <Text style={styles.heading}>{heading}</Text>
@@ -273,7 +277,7 @@ const ShareModal = ({ payload }) => {
{copied ? <Text style={styles.copiedText}>Lien copié</Text> : null} {copied ? <Text style={styles.copiedText}>Lien copié</Text> : null}
</BlurView> </BlurView>
<BlurView intensity={70} style={styles.card} {...blurProps}> <BlurView intensity={90} style={styles.card} {...blurProps}>
<Text style={styles.sectionHeading}>{sectionTitle}</Text> <Text style={styles.sectionHeading}>{sectionTitle}</Text>
<View style={styles.optionsList}> <View style={styles.optionsList}>
{shareOptions.map((option, index) => { {shareOptions.map((option, index) => {
@@ -282,7 +286,7 @@ const ShareModal = ({ payload }) => {
<BlurView <BlurView
key={option?.key || index} key={option?.key || index}
style={styles.optionBlur} style={styles.optionBlur}
intensity={40} intensity={100}
{...blurProps} {...blurProps}
> >
<Pressable <Pressable