Profile Settings

This commit is contained in:
Adolfo Reyna
2022-12-23 00:17:36 -05:00
parent 4c95095882
commit bf0807ba8c
5 changed files with 90 additions and 36 deletions

7
App.js
View File

@@ -20,6 +20,7 @@ import i18n from "./i18nMessages.js";
import NewPostView from './Views/NewPost.js';
import { TouchableOpacity, View } from 'react-native';
import MenuView from './Views/Menu.js';
import ProfileSettings from './Views/ProfileSettings.js';
const Tab = createBottomTabNavigator();
@@ -156,7 +157,7 @@ const MainNavigation = () => {
<TouchableOpacity
onPress={props.onPress}
style={{
top: -27,
top: -17,
justifyContent: 'center',
alignItems: 'center',
@@ -250,6 +251,10 @@ export default function App() {
name="Search"
component={Search}
/>
<Stack.Screen
name="ProfileSettings"
component={ProfileSettings}
/>
<Stack.Screen
name="Notifications"
component={NotificationsView}