chore: update

This commit is contained in:
2026-03-14 17:44:00 +01:00
parent 0043646cff
commit 0ae1529353
6 changed files with 360 additions and 7 deletions
+15
View File
@@ -30,6 +30,7 @@ import ProductDetailScreen from "../screens/client/ProductDetailScreen";
import CheckoutScreen from "../screens/client/CheckoutScreen";
import OrderDetailsScreen from "../screens/client/OrderDetailsScreen";
import ParrainageScreen from "../screens/client/ParrainageScreen";
import ProfileScreen from "../screens/client/ProfileScreen";
const Tab = createBottomTabNavigator<ClientTabParamList>();
const Stack = createNativeStackNavigator<ClientStackParamList>();
@@ -238,6 +239,20 @@ function ClientTabs() {
),
}}
/>
<Tab.Screen
name="Profile"
component={ProfileScreen}
options={{
title: "Profil",
tabBarIcon: ({ color, size }) => (
<Ionicons
name="person-outline"
size={size}
color={color}
/>
),
}}
/>
</Tab.Navigator>
<Modal
+1
View File
@@ -23,6 +23,7 @@ export type ClientTabParamList = {
Cart: undefined;
Tracking: undefined;
History: undefined;
Profile: undefined;
};
export type ClientStackParamList = {