This commit is contained in:
Philip Cesar Garay
2025-08-11 21:10:08 +08:00
parent 7bcc2e9779
commit 643e8054ac
27 changed files with 912 additions and 23 deletions
+50
View File
@@ -32,6 +32,16 @@ import AddPhotoCover from "../screens/Studio/AddPhotoCover";
import FinishCompose from "../screens/Studio/FinishCompose";
import Production from "../screens/Production/Production";
import ProductionOnboarding from "../screens/Production/ProductionOnboarding";
import DownloadSongs from "../screens/Production/DownloadSongs";
import DownloadPrices from "../screens/Production/DownloadPrices";
import SongDownloaded from "../screens/Production/SongDownloaded";
import StreamSong from "../screens/Production/StreamSong";
import SongRelease from "../screens/Production/SongRelease";
import PlaybackExample from "../screens/Production/PlaybackExample";
import PlaybackOnboarding from "../screens/Playback/PlaybackOnboarding";
import Playback from "../screens/Playback/Playback";
import RecordPlayback from "../screens/Playback/RecordPlayback";
import RecordedPlayback from "../screens/Playback/RecordedPlayback";
const screenOptions = {
headerShown: false,
@@ -143,6 +153,46 @@ const screens = [
name: Routes.Production,
component: Production,
},
{
name: Routes.DownloadSongs,
component: DownloadSongs,
},
{
name: Routes.DownloadPrices,
component: DownloadPrices,
},
{
name: Routes.SongDownloaded,
component: SongDownloaded,
},
{
name: Routes.StreamSong,
component: StreamSong,
},
{
name: Routes.SongRelease,
component: SongRelease,
},
{
name: Routes.PlaybackExample,
component: PlaybackExample,
},
{
name: Routes.PlaybackOnboarding,
component: PlaybackOnboarding,
},
{
name: Routes.Playback,
component: Playback,
},
{
name: Routes.RecordPlayback,
component: RecordPlayback,
},
{
name: Routes.RecordedPlayback,
component: RecordedPlayback,
},
];
export default function Main() {