Skip to content

Commit 170fd3f

Browse files
feat: profile and saved default page
1 parent 8fa03d0 commit 170fd3f

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

app/(tabs)/profile.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
import { icons } from "@/src/constants/icons";
12
import React from "react";
2-
import { Text, View } from "react-native";
3+
import { Image, Text, View } from "react-native";
34

45
const Profile = () => {
56
return (
6-
<View>
7-
<Text>Profile</Text>
7+
<View className="bg-primary flex-1 px-10">
8+
<View className="flex justify-center items-center flex-1 flex-col gap-5">
9+
<Image source={icons.person} className="size-10" tintColor={"#FFF"} />
10+
<Text className="text-gray-500 text-base">Perfil</Text>
11+
</View>
812
</View>
913
);
1014
};

app/(tabs)/saved.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
import { icons } from "@/src/constants/icons";
12
import React from "react";
2-
import { Text, View } from "react-native";
3+
import { Image, Text, View } from "react-native";
34

45
const Saved = () => {
56
return (
6-
<View>
7-
<Text>Saved</Text>
7+
<View className="bg-primary flex-1 px-10">
8+
<View className="flex justify-center items-center flex-1 flex-col gap-5">
9+
<Image source={icons.save} className="size-10" tintColor={"#FFF"} />
10+
<Text className="text-gray-500 text-base">Salvos</Text>
11+
</View>
812
</View>
913
);
1014
};

0 commit comments

Comments
 (0)