This commit is contained in:
Philip Cesar Garay
2025-08-26 18:08:09 +08:00
parent b9f7c4b4a0
commit 2a34e9d547
47 changed files with 944 additions and 568 deletions
+11 -1
View File
@@ -1,4 +1,11 @@
import { View, Text, Image, Pressable, StyleSheet } from "react-native";
import {
View,
Text,
Image,
Pressable,
StyleSheet,
Platform,
} from "react-native";
import React, { useEffect, useState } from "react";
import { Palette, Style } from "../../../styles";
import { icons, img } from "../../../assets";
@@ -45,6 +52,9 @@ const MusicCard = ({ onPress, onPressMore }) => {
...Style.containerSpaceBetween,
paddingHorizontal: 8,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<View>
<Text style={styles.title}>Alors on danse</Text>
+4 -1
View File
@@ -1,4 +1,4 @@
import { View, Text, Pressable, Image } from "react-native";
import { View, Text, Pressable, Image, Platform } from "react-native";
import React from "react";
import CardContainer from "./CardContainer";
import { BlurView } from "expo-blur";
@@ -25,6 +25,9 @@ const MyPlaylist = () => {
height: 59,
paddingHorizontal: 10,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<Text
style={{
@@ -1,4 +1,4 @@
import { View, Text, Pressable, StyleSheet } from "react-native";
import { View, Text, Pressable, StyleSheet, Platform } from "react-native";
import React from "react";
import SearchBar from "../../../components/SearchBar";
import { Palette, Style } from "../../../styles";
@@ -31,7 +31,13 @@ const ResearchHeader = ({ onPress, selected }) => {
style={styles.borderGradient}
/>
<View style={styles.blurContainer}>
<BlurView intensity={20} style={styles.blurView}>
<BlurView
intensity={20}
style={styles.blurView}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<Text style={styles.menu}>{item}</Text>
</BlurView>
</View>