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