This commit is contained in:
Philip Cesar Garay
2025-08-07 21:02:22 +08:00
parent 40e877774b
commit 5a4d36e1bc
34 changed files with 902 additions and 137 deletions
+5 -3
View File
@@ -6,7 +6,7 @@ import Style, { size } from "../../styles/Style";
import { Palette } from "../../styles";
import { FONT_FAMILY } from "../../styles/Fonts";
import ProgressBar from "../../components/ProgressBar";
import { navigate } from "../../navigation/NavigationService";
import { goBack, navigate } from "../../navigation/NavigationService";
import { Routes } from "../../navigation";
import GradientButton from "../../components/GradientButton";
@@ -19,7 +19,7 @@ const CreatingSong = ({ active }) => {
setProgress((prevProgress) => {
if (prevProgress >= 100) {
clearInterval(interval);
navigate(Routes.SongReady)
return 100;
}
return prevProgress + 1;
@@ -34,6 +34,7 @@ const CreatingSong = ({ active }) => {
<View
style={{
flex: 1,
paddingTop: 16,
...Style.containerCenter,
}}
>
@@ -69,6 +70,7 @@ const CreatingSong = ({ active }) => {
>
<BlurView
intensity={40}
tint="dark"
style={{ flex: 1, padding: 10, paddingBottom: 20 }}
>
<Pressable
@@ -80,7 +82,7 @@ const CreatingSong = ({ active }) => {
left: 10,
zIndex: 3,
}}
onPress={() => console.log("Pressed")}
onPress={goBack}
>
<Image source={icons.close} style={size({ size: 11 })} />
</Pressable>