File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1+ import { icons } from "@/src/constants/icons" ;
12import React from "react" ;
2- import { Text , View } from "react-native" ;
3+ import { Image , Text , View } from "react-native" ;
34
45const 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} ;
Original file line number Diff line number Diff line change 1+ import { icons } from "@/src/constants/icons" ;
12import React from "react" ;
2- import { Text , View } from "react-native" ;
3+ import { Image , Text , View } from "react-native" ;
34
45const 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} ;
You can’t perform that action at this time.
0 commit comments