diff --git a/app/More.js b/app/More.js index 60264b5..2b486b1 100644 --- a/app/More.js +++ b/app/More.js @@ -26,6 +26,7 @@ import Announcements from './Announcements' import Resources from './Resources' import StudentWeek from './StudentWeek' import SSLOps from './SSLOps' +import LunchEvents from './LunchEvents' const Stack = createStackNavigator() @@ -37,12 +38,13 @@ class MoreSwitch extends React.Component { render() { return ( - + @@ -66,7 +68,8 @@ class More extends React.Component { component={MoreSwitch} options={{ title:'More', - headerTitleStyle:styles.headerTitle + headerTitleStyle:styles.headerTitle, + headerStyle:{borderBottomWidth:0.5,borderBottomColor:'black'}, }} /> + diff --git a/app/styles/morestyles.js b/app/styles/morestyles.js index 8f4b0e8..9a8a9f5 100644 --- a/app/styles/morestyles.js +++ b/app/styles/morestyles.js @@ -3,8 +3,8 @@ import {StyleSheet, Dimensions} from 'react-native'; const styles=StyleSheet.create({ moreitem: { backgroundColor:'red', - borderColor:'white', - borderWidth:0.5, + borderBottomColor:'white', + borderBottomWidth:0.5, height: Dimensions.get('window').height*0.075, justifyContent:'center' },