add orders collecrtion for coins and subscriptions page

This commit is contained in:
Thomas Demirdjian
2025-11-05 11:18:43 +01:00
parent ffaccd71a7
commit a7371323c4
17 changed files with 1613 additions and 228 deletions
+6
View File
@@ -37,6 +37,7 @@ import EditProfile from "../screens/Profile/EditProfile";
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 Profile from "../screens/Profile/Profile";
import Reels from "../screens/Profile/Reels";
import Settings from "../screens/Profile/Settings";
@@ -271,6 +272,11 @@ const baseScreens = [
name: Routes.Settings,
component: Settings,
},
{
name: Routes.OrderHistory,
component: OrderHistory,
title: "Historique de commandes",
},
{
name: Routes.Follows,
component: Follows,
+1
View File
@@ -76,6 +76,7 @@ export const Routes = {
SingerProfile: "SingerProfile",
EditProfile: "EditProfile",
Settings: "Settings",
OrderHistory: "OrderHistory",
ChangeEmailAddress: "ChangeEmailAddress",
ChangePassword: "ChangePassword",
Notifications: "Notifications",