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
+15
View File
@@ -42,6 +42,9 @@ import PlaybackOnboarding from "../screens/Playback/PlaybackOnboarding";
import Playback from "../screens/Playback/Playback";
import RecordPlayback from "../screens/Playback/RecordPlayback";
import RecordedPlayback from "../screens/Playback/RecordedPlayback";
import ChooseDecor from "../screens/Playback/ChooseDecor";
import CreatingDecor from "../screens/Playback/CreatingDecor";
import VideoFinalize from "../screens/Playback/VideoFinalize";
const screenOptions = {
headerShown: false,
@@ -193,6 +196,18 @@ const screens = [
name: Routes.RecordedPlayback,
component: RecordedPlayback,
},
{
name: Routes.ChooseDecor,
component: ChooseDecor,
},
{
name: Routes.CreatingDecor,
component: CreatingDecor,
},
{
name: Routes.VideoFinalize,
component: VideoFinalize,
},
];
export default function Main() {