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
+4 -1
View File
@@ -1,4 +1,4 @@
import { View } from "react-native";
import { Platform, View } from "react-native";
import React from "react";
import Page from "../../layouts/Page";
import { background } from "../../assets";
@@ -31,6 +31,9 @@ const ChangeEmailAddress = () => {
overflow: "hidden",
backgroundColor: Palette.glass,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<EditInput placeholder="Adresse mail" label="Adresse mail" />
</BlurView>
+4 -1
View File
@@ -1,4 +1,4 @@
import { View, Text, Pressable } from "react-native";
import { View, Text, Pressable, Platform } from "react-native";
import React from "react";
import Page from "../../layouts/Page";
import { background } from "../../assets";
@@ -33,6 +33,9 @@ const ChangePassword = () => {
backgroundColor: Palette.glass,
gap: 4,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<EditInput
placeholder="Mot de passe"
+4 -1
View File
@@ -1,4 +1,4 @@
import { View, Text, Image, TextInput } from "react-native";
import { View, Text, Image, TextInput, Platform } from "react-native";
import React from "react";
import Page from "../../layouts/Page";
import { background, img } from "../../assets";
@@ -34,6 +34,9 @@ const EditProfile = () => {
overflow: "hidden",
gap: 24,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<View style={{ alignItems: "center" }}>
<Image
+4 -1
View File
@@ -1,4 +1,4 @@
import { View, Text, Pressable } from "react-native";
import { View, Text, Pressable, Platform } from "react-native";
import React, { useState } from "react";
import Page from "../../layouts/Page";
import { background } from "../../assets";
@@ -37,6 +37,9 @@ const Language = () => {
borderRadius: 20,
overflow: "hidden",
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<Text
style={{
+5 -1
View File
@@ -1,8 +1,9 @@
/* eslint-disable react/display-name */
import React from "reactn";
import Page from "../../layouts/Page";
import { gutters, Palette, Style } from "../../styles";
import { background } from "../../assets";
import { Text, View } from "react-native";
import { Platform, Text, View } from "react-native";
import { responsiveHeight } from "react-native-responsive-dimensions";
import { BlurView } from "expo-blur";
import Switch from "../../components/Switch";
@@ -35,6 +36,9 @@ export default (props) => {
overflow: "hidden",
backgroundColor: Palette.glass,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<View style={Style.containerSpaceBetween}>
<Text
+11 -1
View File
@@ -5,6 +5,7 @@ import {
Image,
FlatList,
StyleSheet,
Platform,
} from "react-native";
import React, { useState } from "react";
import Page from "../../layouts/Page";
@@ -54,6 +55,9 @@ const Profile = () => {
backgroundColor: Palette.glass,
paddingHorizontal: 20,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<View style={{ alignItems: "center" }}>
<Image
@@ -122,7 +126,13 @@ const Profile = () => {
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>
+4 -1
View File
@@ -65,7 +65,10 @@ const Settings = () => {
))}
</View>
<View style={{ width: "80%", gap: 5, alignSelf: "center" }}>
<BorderGradientButton title="Déconnexion" />
<BorderGradientButton
title="Déconnexion"
onPress={() => navigate(Routes.Login)}
/>
<BorderGradientButton
title="Supprimer mon profil"
titleStyle={{
+11 -1
View File
@@ -5,6 +5,7 @@ import {
Image,
StyleSheet,
FlatList,
Platform,
} from "react-native";
import React, { useState } from "react";
import Page from "../../layouts/Page";
@@ -54,6 +55,9 @@ const SingerProfile = () => {
backgroundColor: Palette.glass,
paddingHorizontal: 20,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<View style={{ alignItems: "center" }}>
<Image
@@ -122,7 +126,13 @@ const SingerProfile = () => {
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>
+11 -1
View File
@@ -1,4 +1,11 @@
import { View, Text, TextInput, Image, Pressable } from "react-native";
import {
View,
Text,
TextInput,
Image,
Pressable,
Platform,
} from "react-native";
import React, { useState } from "react";
import { Palette, Style } from "../../../styles";
import { FONT_FAMILY } from "../../../styles/Fonts";
@@ -44,6 +51,9 @@ const EditInput = ({ label = "", placeholder = "", type = "default" }) => {
height: 52,
...Style.containerRow,
}}
experimentalBlurMethod={
Platform.OS !== "ios" ? "dimezisBlurView" : "none"
}
>
<TextInput
placeholder={placeholder}