Remove blur view.

This commit is contained in:
Patrick Fic
2025-10-21 13:16:03 -07:00
parent 31d151c3b4
commit 044be62f3d
3 changed files with 4 additions and 10 deletions

View File

@@ -1,4 +1,3 @@
import { BlurView } from "expo-blur";
import * as Haptics from "expo-haptics";
import { useRouter } from "expo-router";
import React, { memo, useCallback } from "react";
@@ -51,7 +50,8 @@ function JobListItemComponent({ openImagePicker, item }) {
style={({ pressed }) => [styles.pressable, pressed && { opacity: 0.85 }]}
>
<View style={styles.outerShadow}>
<BlurView
<View
experimentalBlurMethod="true"
intensity={Platform.OS === "ios" ? 30 : 0}
tint={theme.dark ? "dark" : "light"}
style={styles.blurContainer}
@@ -104,7 +104,7 @@ function JobListItemComponent({ openImagePicker, item }) {
/>
</View>
</View>
</BlurView>
</View>
</View>
</Pressable>
);