continue subscriptions and coins

This commit is contained in:
Thomas Demirdjian
2025-11-05 15:39:15 +01:00
parent a58eeac079
commit 5f777f3b6d
25 changed files with 1994 additions and 222 deletions
+5
View File
@@ -38,6 +38,7 @@ import Follows from "../screens/Profile/Follows";
import Language from "../screens/Profile/Language";
import Notifications from "../screens/Profile/Notifications";
import OrderHistory from "../screens/Profile/OrderHistory";
import ManageSubscription from "../screens/Profile/ManageSubscription";
import Profile from "../screens/Profile/Profile";
import Reels from "../screens/Profile/Reels";
import Settings from "../screens/Profile/Settings";
@@ -272,6 +273,10 @@ const baseScreens = [
name: Routes.Settings,
component: Settings,
},
{
name: Routes.ManageSubscription,
component: ManageSubscription,
},
{
name: Routes.OrderHistory,
component: OrderHistory,
+1
View File
@@ -77,6 +77,7 @@ export const Routes = {
EditProfile: "EditProfile",
Settings: "Settings",
OrderHistory: "OrderHistory",
ManageSubscription: "ManageSubscription",
ChangeEmailAddress: "ChangeEmailAddress",
ChangePassword: "ChangePassword",
Notifications: "Notifications",