From 74d6fd67b30675391a8380a447cf59fabb106497 Mon Sep 17 00:00:00 2001 From: M10T Date: Sun, 9 Aug 2020 21:27:58 -0400 Subject: [PATCH] Additional changes to more screen --- app/More.js | 28 ++++++++++++++++++++++------ app/styles/morestyles.js | 4 ++-- 2 files changed, 24 insertions(+), 8 deletions(-) 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' },