This commit is contained in:
Philip Cesar Garay
2025-08-08 21:01:38 +08:00
parent 5a4d36e1bc
commit 7bcc2e9779
28 changed files with 1065 additions and 269 deletions
+12
View File
@@ -0,0 +1,12 @@
import { View, Text } from "react-native";
import React from "react";
const DownloadSongs = () => {
return (
<View>
<Text>DownloadSongs</Text>
</View>
);
};
export default DownloadSongs;
+37
View File
@@ -0,0 +1,37 @@
import { View } from "react-native";
import React from "react";
import Page from "../../layouts/Page";
import { background } from "../../assets";
import { gutters } from "../../styles";
import GradientButton from "../../components/GradientButton";
import MusicLandHeader from "../../components/MusicLandHeader";
import { goBack } from "../../navigation/NavigationService";
import BorderGradientButton from "../../components/BorderGradientButton";
const Production = () => {
return (
<Page headerType="NONE" backgroundImg={background.productionBG}>
<MusicLandHeader onPressBack={goBack} progress={9} />
<View
style={{
flex: 1,
paddingBottom: gutters * 2,
justifyContent: "flex-end",
gap: 37,
}}
>
<BorderGradientButton title="Je télécharge ma chanson" />
<View style={{ gap: 12 }}>
<GradientButton title="Je veux devenir Playbacker" />
<BorderGradientButton title="Voir exemples" />
</View>
<View style={{ gap: 12 }}>
<GradientButton title="Je veux créer un Clip" />
<BorderGradientButton title="Voir exemples" />
</View>
</View>
</Page>
);
};
export default Production;
@@ -0,0 +1,29 @@
import { View, Text } from "react-native";
import React from "react";
import Page from "../../layouts/Page";
import { background } from "../../assets";
import { gutters } from "../../styles";
import GradientButton from "../../components/GradientButton";
import { navigate } from "../../navigation/NavigationService";
import { Routes } from "../../navigation";
const ProductionOnboarding = () => {
return (
<Page headerType="NONE" backgroundImg={background.productionBG}>
<View
style={{
flex: 1,
paddingBottom: gutters * 2,
justifyContent: "flex-end",
}}
>
<GradientButton
title="Commence"
onPress={() => navigate(Routes.Production)}
/>
</View>
</Page>
);
};
export default ProductionOnboarding;