update
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -42,4 +42,15 @@ export const Routes = {
|
||||
|
||||
ProductionOnboarding: "ProductionOnboarding",
|
||||
Production: "Production",
|
||||
DownloadSongs: "DownloadSongs",
|
||||
DownloadPrices: "DownloadPrices",
|
||||
SongDownloaded: "SongDownloaded",
|
||||
StreamSong: "StreamSong",
|
||||
SongRelease: "SongRelease",
|
||||
PlaybackExample: "PlaybackExample",
|
||||
|
||||
PlaybackOnboarding: "PlaybackOnboarding",
|
||||
Playback: "Playback",
|
||||
RecordPlayback: "RecordPlayback",
|
||||
RecordedPlayback: "RecordedPlayback",
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user