Add tag functionality to posts and implement Tags screen

This commit is contained in:
Adolfo Reyna
2025-02-28 00:21:00 -05:00
parent f5c7ff38dd
commit 8cdcfefa0d
6 changed files with 177 additions and 34 deletions

5
App.js
View File

@@ -8,6 +8,7 @@ import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
import Login from "./Views/Login.js"
import Feed from "./Views/Feed.js"
import Profile from "./Views/Profile.js"
import Tags from "./Views/Tags.js"
import Search from './Views/Search.js';
import Groups from './Views/Groups.js';
import Courses from './Views/Courses.js';
@@ -306,6 +307,10 @@ export default function App() {
name="Profile"
component={Profile}
/>
<Stack.Screen
name="Tags"
component={Tags}
/>
<Stack.Screen
name="NewPost"
component={NewPostView}