diff --git a/App.js b/App.js
index d22f18b..810b5ad 100644
--- a/App.js
+++ b/App.js
@@ -4,7 +4,7 @@ import { StyleSheet, Text, View, TextInput, SafeAreaView } from 'react-native';
import API from './API.js';
import LoginForm from './components/Login.js';
import { Provider as PaperProvider } from 'react-native-paper';
-import AwesomeIcon from 'react-native-vector-icons/FontAwesome';
+import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import Login from "./Views/Login.js"
@@ -20,16 +20,16 @@ export default function App() {
return (
+ activeColor="#0d6efd"
+ inactiveColor="#FFFFFF"
+ barStyle={{ backgroundColor: '#000000' }}>
(
-
+
),
tabBarBadge: false
}}
@@ -39,7 +39,17 @@ export default function App() {
},
})}
/>
-
+ (
+
+ ),
+ tabBarBadge: false
+ }}
+ />
diff --git a/Views/Feed.js b/Views/Feed.js
index 5f27a25..58d6d88 100644
--- a/Views/Feed.js
+++ b/Views/Feed.js
@@ -3,10 +3,20 @@ import React, { useState, useEffect } from 'react';
import { View, ActivityIndicator, StyleSheet, SafeAreaView, FlatList } from 'react-native';
import API from './../API.js';
import Post from './../components/Post.js';
-import { Provider as PaperProvider } from 'react-native-paper';
+import { Provider as PaperProvider, DefaultTheme, } from 'react-native-paper';
import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
import NewPost from "./../components/NewPost.js";
+const theme = {
+ ...DefaultTheme,
+ roundness: 2,
+ colors: {
+ ...DefaultTheme.colors,
+ primary: '#000000',
+ accent: '#0d6efd',
+ background: "#edf2f7",
+ },
+ };
let Feed = ({ navigation, route }) => {
@@ -33,7 +43,7 @@ let Feed = ({ navigation, route }) => {
return (
,
- }}>
+ }} theme={theme}>