Fix Task: #92
This commit is contained in:
@@ -17,11 +17,11 @@ const BlurItemButton = ({ onPress, title = "" }) => {
|
||||
return (
|
||||
<Pressable onPress={onPress}>
|
||||
<BlurView
|
||||
intensity={20}
|
||||
intensity={Platform.OS === "ios" ? 20 : 10}
|
||||
style={styles.buttonContainer}
|
||||
experimentalBlurMethod={
|
||||
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
|
||||
}
|
||||
// experimentalBlurMethod={
|
||||
// Platform.OS !== "ios" ? "dimezisBlurView" : "none"
|
||||
// }
|
||||
>
|
||||
<Text style={styles.buttonText}>{title}</Text>
|
||||
<Image
|
||||
|
||||
Reference in New Issue
Block a user