This commit is contained in:
Philip Cesar Garay
2025-08-12 21:03:49 +08:00
parent 5a521d2f3d
commit 7d8942e125
49 changed files with 1002 additions and 122 deletions
+16 -5
View File
@@ -12,10 +12,21 @@ import { FONT_FAMILY } from "../../styles/Fonts";
import BorderGradientButton from "../../components/BorderGradientButton";
import GradientButton from "../../components/GradientButton";
import { Routes } from "../../navigation";
import { useRoute } from "@react-navigation/core";
const SongRelease = () => {
const params = useRoute().params;
const action = params?.action;
return (
<Page backgroundImg={background.productionBG2} headerType="NONE">
<Page
backgroundImg={
action === "playback"
? background.playbackBG2
: background.productionBG2
}
headerType="NONE"
>
<MusicLandHeader onPressBack={goBack} progress={100} />
<View style={{ flex: 1, paddingTop: responsiveHeight(15) }}>
<CreateLyricsHeader
@@ -41,7 +52,7 @@ const SongRelease = () => {
textAlign: "center",
}}
>
Chanson publiée!
{action === "playback" ? "Playback" : "Chanson"} publiée !
</Text>
<Text
style={{
@@ -50,9 +61,9 @@ const SongRelease = () => {
fontFamily: FONT_FAMILY.InterMedium,
}}
>
Ta chanson est désormais accessible sur lapplication et les
réseaux sociaux de MusicLand. Nhésite pas à la partager avec tes
proches.
{action === "playback" ? "Ton Playback" : "Ta Chanson"} est
désormais accessible sur lapplication et les réseaux sociaux de
MusicLand. Nhésite pas à la partager avec tes proches.
</Text>
</View>
<View