background iamges
This commit is contained in:
+1
-1
@@ -52,7 +52,7 @@ local.properties
|
|||||||
*.hprof
|
*.hprof
|
||||||
.cxx/
|
.cxx/
|
||||||
|
|
||||||
|
firebase-debug.log
|
||||||
# node.js
|
# node.js
|
||||||
#
|
#
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 90 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 103 KiB |
+3
-1
@@ -105,13 +105,13 @@ import john from "./UI/john.png";
|
|||||||
import nathalie from "./UI/nathalie.png";
|
import nathalie from "./UI/nathalie.png";
|
||||||
import theo from "./UI/theo.png";
|
import theo from "./UI/theo.png";
|
||||||
|
|
||||||
|
import { Platform } from "react-native";
|
||||||
import goodVibe from "./UI/goodVibe.png";
|
import goodVibe from "./UI/goodVibe.png";
|
||||||
import placeholder from "./UI/placeholder.jpg";
|
import placeholder from "./UI/placeholder.jpg";
|
||||||
import placeholder2 from "./UI/placeholder2.jpg";
|
import placeholder2 from "./UI/placeholder2.jpg";
|
||||||
import placeholder3 from "./UI/placeholder3.png";
|
import placeholder3 from "./UI/placeholder3.png";
|
||||||
import placeholder4 from "./UI/placeholder4.jpg";
|
import placeholder4 from "./UI/placeholder4.jpg";
|
||||||
import profile from "./UI/profile.jpg";
|
import profile from "./UI/profile.jpg";
|
||||||
import { Platform } from "react-native";
|
|
||||||
|
|
||||||
export const tabs = {
|
export const tabs = {
|
||||||
home,
|
home,
|
||||||
@@ -224,9 +224,11 @@ export const background = {
|
|||||||
profileBG,
|
profileBG,
|
||||||
profileBgWeb: require("./UI/profileBgWeb.png"),
|
profileBgWeb: require("./UI/profileBgWeb.png"),
|
||||||
hitParadeBG,
|
hitParadeBG,
|
||||||
|
hitParadeBG2: require("./UI/hitParadeBG2.jpeg"),
|
||||||
homeBG,
|
homeBG,
|
||||||
homeBGWeb: require("./UI/homeBGWeb.png"),
|
homeBGWeb: require("./UI/homeBGWeb.png"),
|
||||||
loginBgWeb: require("./UI/loginBgWeb.png"),
|
loginBgWeb: require("./UI/loginBgWeb.png"),
|
||||||
|
profileWebBG: require("./UI/profileWebBG.jpeg"),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ai = {
|
export const ai = {
|
||||||
|
|||||||
@@ -210,11 +210,11 @@ const HitParade = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
backgroundImg={isWeb ? background.libraryBgWeb : background.hitParadeBG}
|
backgroundImg={isWeb ? background.hitParadeBG2 : background.hitParadeBG}
|
||||||
headerType="NONE"
|
headerType="NONE"
|
||||||
width="100%"
|
width="100%"
|
||||||
maxWidth={800}
|
maxWidth={800}
|
||||||
blurIntensity={isWeb ? 2 : 0}
|
blurIntensity={isWeb ? 1 : 0}
|
||||||
>
|
>
|
||||||
<View style={{ gap: 12, flex: 1 }}>
|
<View style={{ gap: 12, flex: 1 }}>
|
||||||
<Image source={icons.musicLandLogo} style={{ alignSelf: "center" }} />
|
<Image source={icons.musicLandLogo} style={{ alignSelf: "center" }} />
|
||||||
|
|||||||
@@ -300,7 +300,7 @@ const Profile = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
backgroundImg={isWeb ? background.profileBgWeb : background.profileBG}
|
backgroundImg={isWeb ? background.profileWebBG : background.profileWebBG}
|
||||||
headerType="NAVIGATE"
|
headerType="NAVIGATE"
|
||||||
hideBackButton={params?.noBack}
|
hideBackButton={params?.noBack}
|
||||||
contentContainerStyle={{
|
contentContainerStyle={{
|
||||||
@@ -349,11 +349,11 @@ const Profile = () => {
|
|||||||
</PressableScale>
|
</PressableScale>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<View style={{ alignItems: "center" }}>
|
<View style={{ alignItems: "center" }}>
|
||||||
<View style={styles.avatarWrapper}>
|
<View style={styles.avatarWrapper}>
|
||||||
<ExpoImage
|
<ExpoImage
|
||||||
source={
|
source={
|
||||||
(
|
(
|
||||||
isSelf
|
isSelf
|
||||||
? currentUserData?.profilePictureURL
|
? currentUserData?.profilePictureURL
|
||||||
: userData?.profilePictureURL
|
: userData?.profilePictureURL
|
||||||
|
|||||||
Reference in New Issue
Block a user