blur
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user