This commit is contained in:
Philip Cesar Garay
2025-08-15 21:02:34 +08:00
parent 41636b5dbc
commit a8ebe8bcc3
39 changed files with 1436 additions and 391 deletions
+35 -6
View File
@@ -11,7 +11,7 @@ import Onboarding from "../screens/Onboarding";
import Login from "../screens/Login";
import ForgotPassword from "../screens/ForgotPassword";
import Notifications from "../screens/Notifications";
import Notifications from "../screens/Profile/Notifications";
import TermsOfUse from "../screens/TermsOfUse";
import PrivacyPolicy from "../screens/PrivacyPolicy";
@@ -51,6 +51,12 @@ import AllMyLikedMusic from "../screens/Library/AllMyLikedMusic";
import Research from "../screens/Library/Research";
import MusicDetails from "../screens/Library/MusicDetails";
import SingerProfile from "../screens/Profile/SingerProfile";
import EditProfile from "../screens/Profile/EditProfile";
import Settings from "../screens/Profile/Settings";
import ChangeEmailAddress from "../screens/Profile/ChangeEmailAddress";
import ChangePassword from "../screens/Profile/ChangePassword";
import Language from "../screens/Profile/Language";
import Reels from "../screens/Profile/Reels";
const screenOptions = {
headerShown: false,
@@ -79,11 +85,6 @@ const screens = [
component: BottomTabScreen,
options: { animationEnabled: false },
},
{
name: Routes.Notifications,
component: Notifications,
title: "Notifications",
},
{
name: Routes.TermsOfUse,
component: TermsOfUse,
@@ -238,6 +239,34 @@ const screens = [
name: Routes.SingerProfile,
component: SingerProfile,
},
{
name: Routes.EditProfile,
component: EditProfile,
},
{
name: Routes.Settings,
component: Settings,
},
{
name: Routes.ChangeEmailAddress,
component: ChangeEmailAddress,
},
{
name: Routes.ChangePassword,
component: ChangePassword,
},
{
name: Routes.Notifications,
component: Notifications,
},
{
name: Routes.Language,
component: Language,
},
{
name: Routes.Reels,
component: Reels,
},
];
export default function Main() {