diff --git a/app/Resources.js b/app/Resources.js index f79bac7..eb4986e 100644 --- a/app/Resources.js +++ b/app/Resources.js @@ -6,6 +6,8 @@ import { View, Text, StatusBar, + Linking, + Image, } from 'react-native'; import { @@ -15,13 +17,73 @@ import { DebugInstructions, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; - +import styles from './styles/morestyles'; class Resources extends React.Component { render() { return ( - - - + + + Linking.openURL('https://classroom.mcpsmd.org/')}> + + + + MyMCPS Classroom + + + + + + Linking.openURL('https://md-mcps-psv.edupoint.com/Home_PXP2.aspx')}> + + + + StudentVUE + + + + + + Linking.openURL('https://mbhs.edu/newsevents/Announcements/Montgomery%20Blair%20High%20School%20Final%20Bell%20Schedule%20.pdf')}> + + + + 1st Semester Schedule + + + + + + Linking.openURL('https://student.naviance.com/mbhs')}> + + + + Naviance + + + + + + Linking.openURL('https://blairblazersathletics.com/')}> + + + + Blair Athletics + + + + + + Linking.openURL('https://classroom.google.com/u/0/h')}> + + + + Google Classroom + + + + + + ) } } diff --git a/app/assets/athletics.jpg b/app/assets/athletics.jpg new file mode 100644 index 0000000..54f8eb4 Binary files /dev/null and b/app/assets/athletics.jpg differ diff --git a/app/assets/canvaslogo.png b/app/assets/canvaslogo.png new file mode 100644 index 0000000..57f1b05 Binary files /dev/null and b/app/assets/canvaslogo.png differ diff --git a/app/assets/googleclassroom.jpg b/app/assets/googleclassroom.jpg new file mode 100644 index 0000000..ab755d0 Binary files /dev/null and b/app/assets/googleclassroom.jpg differ diff --git a/app/assets/naviance.png b/app/assets/naviance.png new file mode 100644 index 0000000..dc09320 Binary files /dev/null and b/app/assets/naviance.png differ diff --git a/app/assets/schedule.jpg b/app/assets/schedule.jpg new file mode 100644 index 0000000..82b633d Binary files /dev/null and b/app/assets/schedule.jpg differ diff --git a/app/assets/studentvue.jpg b/app/assets/studentvue.jpg new file mode 100644 index 0000000..da044eb Binary files /dev/null and b/app/assets/studentvue.jpg differ diff --git a/app/styles/liststyles.js b/app/styles/liststyles.js index 2281e4b..f7492e4 100644 --- a/app/styles/liststyles.js +++ b/app/styles/liststyles.js @@ -10,7 +10,7 @@ const styles = StyleSheet.create({ padding: 20, marginVertical: 8, marginHorizontal: 16, - borderRadius: 8, + borderRadius: 16, }, title: { fontSize: 32, diff --git a/app/styles/morestyles.js b/app/styles/morestyles.js index 9a8a9f5..aa3e34b 100644 --- a/app/styles/morestyles.js +++ b/app/styles/morestyles.js @@ -15,7 +15,29 @@ const styles=StyleSheet.create({ headerTitle: { fontWeight:'bold', fontSize:24 - } + }, + resourceContainer: { + alignItems: 'center', + marginTop: '3%', + }, + image: { + height: 100, + width: 400, + borderTopRightRadius: 16, + borderTopLeftRadius: 16, + }, + textContainer: { + backgroundColor: 'black', + width: 400, + borderBottomLeftRadius: 16, + borderBottomRightRadius: 16, + }, + resourceText: { + fontWeight: 'bold', + color: 'white', + fontSize:32, + textAlign:'center', + }, }); export default styles; \ No newline at end of file