├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets ├── Add.svg ├── Back.svg ├── Close.svg ├── Home.svg ├── Home_Active.svg ├── Like.svg ├── Like_Active.svg ├── Like_Liked.svg ├── Location_Indicator.svg ├── LogoType.svg ├── Logo_Horizontal.svg ├── Logo_Icon.svg ├── Logo_Vertical.svg ├── Mark_User.svg ├── Notification.svg ├── Notification_Active.svg ├── Notification_Active_Alert.svg ├── Notification_Alert.svg ├── Options.svg ├── Profile_Pic.jpg ├── Search.svg ├── Search_Active.svg ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── postpic │ └── postpic.jpg └── splash.png ├── babel.config.js ├── components ├── BottomNav.js ├── Buttons.js ├── Icons.js ├── ProfilePics.js ├── Screens │ ├── CreateScreen.js │ ├── HomeScreen.js │ ├── LikedScreen.js │ ├── NotificationsScreen.js │ ├── PostScreen.js │ ├── ProfileScreen.js │ ├── SearchLocationScreen.js │ ├── SearchProfileScreen.js │ └── YourProfileScreen.js ├── Stacks │ ├── HomeStack.js │ ├── LikedStack.js │ ├── NotificationStack.js │ ├── PostStack.js │ ├── SearchLevelOneStack.js │ ├── SearchStack.js │ └── YourProfileStack.js ├── Styles │ ├── ButtonStyles.js │ ├── ContainerStyles.js │ ├── ProfilePicStyles.js │ ├── TextFieldStyles.js │ └── Typography.js └── cards │ ├── FollowRequestCard.js │ ├── Post.js │ ├── PostSmall.js │ ├── ProfileInfoCard.js │ ├── SearchLocationCard.js │ └── SearchProfileCard.js ├── db.json ├── debug.log └── package.json /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/App.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/app.json -------------------------------------------------------------------------------- /assets/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Add.svg -------------------------------------------------------------------------------- /assets/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Back.svg -------------------------------------------------------------------------------- /assets/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Close.svg -------------------------------------------------------------------------------- /assets/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Home.svg -------------------------------------------------------------------------------- /assets/Home_Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Home_Active.svg -------------------------------------------------------------------------------- /assets/Like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Like.svg -------------------------------------------------------------------------------- /assets/Like_Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Like_Active.svg -------------------------------------------------------------------------------- /assets/Like_Liked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Like_Liked.svg -------------------------------------------------------------------------------- /assets/Location_Indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Location_Indicator.svg -------------------------------------------------------------------------------- /assets/LogoType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/LogoType.svg -------------------------------------------------------------------------------- /assets/Logo_Horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Logo_Horizontal.svg -------------------------------------------------------------------------------- /assets/Logo_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Logo_Icon.svg -------------------------------------------------------------------------------- /assets/Logo_Vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Logo_Vertical.svg -------------------------------------------------------------------------------- /assets/Mark_User.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Mark_User.svg -------------------------------------------------------------------------------- /assets/Notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Notification.svg -------------------------------------------------------------------------------- /assets/Notification_Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Notification_Active.svg -------------------------------------------------------------------------------- /assets/Notification_Active_Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Notification_Active_Alert.svg -------------------------------------------------------------------------------- /assets/Notification_Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Notification_Alert.svg -------------------------------------------------------------------------------- /assets/Options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Options.svg -------------------------------------------------------------------------------- /assets/Profile_Pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Profile_Pic.jpg -------------------------------------------------------------------------------- /assets/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Search.svg -------------------------------------------------------------------------------- /assets/Search_Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/Search_Active.svg -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/postpic/postpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/postpic/postpic.jpg -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/BottomNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/BottomNav.js -------------------------------------------------------------------------------- /components/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Buttons.js -------------------------------------------------------------------------------- /components/Icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Icons.js -------------------------------------------------------------------------------- /components/ProfilePics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/ProfilePics.js -------------------------------------------------------------------------------- /components/Screens/CreateScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/CreateScreen.js -------------------------------------------------------------------------------- /components/Screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/HomeScreen.js -------------------------------------------------------------------------------- /components/Screens/LikedScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/LikedScreen.js -------------------------------------------------------------------------------- /components/Screens/NotificationsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/NotificationsScreen.js -------------------------------------------------------------------------------- /components/Screens/PostScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/PostScreen.js -------------------------------------------------------------------------------- /components/Screens/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/ProfileScreen.js -------------------------------------------------------------------------------- /components/Screens/SearchLocationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/SearchLocationScreen.js -------------------------------------------------------------------------------- /components/Screens/SearchProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/SearchProfileScreen.js -------------------------------------------------------------------------------- /components/Screens/YourProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Screens/YourProfileScreen.js -------------------------------------------------------------------------------- /components/Stacks/HomeStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/HomeStack.js -------------------------------------------------------------------------------- /components/Stacks/LikedStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/LikedStack.js -------------------------------------------------------------------------------- /components/Stacks/NotificationStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/NotificationStack.js -------------------------------------------------------------------------------- /components/Stacks/PostStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/PostStack.js -------------------------------------------------------------------------------- /components/Stacks/SearchLevelOneStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/SearchLevelOneStack.js -------------------------------------------------------------------------------- /components/Stacks/SearchStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/SearchStack.js -------------------------------------------------------------------------------- /components/Stacks/YourProfileStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Stacks/YourProfileStack.js -------------------------------------------------------------------------------- /components/Styles/ButtonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Styles/ButtonStyles.js -------------------------------------------------------------------------------- /components/Styles/ContainerStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Styles/ContainerStyles.js -------------------------------------------------------------------------------- /components/Styles/ProfilePicStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Styles/ProfilePicStyles.js -------------------------------------------------------------------------------- /components/Styles/TextFieldStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Styles/TextFieldStyles.js -------------------------------------------------------------------------------- /components/Styles/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/Styles/Typography.js -------------------------------------------------------------------------------- /components/cards/FollowRequestCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/FollowRequestCard.js -------------------------------------------------------------------------------- /components/cards/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/Post.js -------------------------------------------------------------------------------- /components/cards/PostSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/PostSmall.js -------------------------------------------------------------------------------- /components/cards/ProfileInfoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/ProfileInfoCard.js -------------------------------------------------------------------------------- /components/cards/SearchLocationCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/SearchLocationCard.js -------------------------------------------------------------------------------- /components/cards/SearchProfileCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/components/cards/SearchProfileCard.js -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/db.json -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athnme/POU_Project/HEAD/package.json --------------------------------------------------------------------------------