diff --git a/certs/VDS-Quiz.jks b/certs/VDS-Quiz.jks new file mode 100644 index 0000000..b2003f0 Binary files /dev/null and b/certs/VDS-Quiz.jks differ diff --git a/svg/header.svg b/svg/header.svg new file mode 100644 index 0000000..b4c2b99 --- /dev/null +++ b/svg/header.svg @@ -0,0 +1,734 @@ + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + QUIZ + + + + VDS + + + + + + + + + + + + + diff --git a/vds-app/assets/logo.svg b/svg/logo.svg similarity index 100% rename from vds-app/assets/logo.svg rename to svg/logo.svg diff --git a/svg/logoIOS.svg b/svg/logoIOS.svg new file mode 100644 index 0000000..48aac6e --- /dev/null +++ b/svg/logoIOS.svg @@ -0,0 +1,635 @@ + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + QUIZ + + + + VDS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vds-app/assets/splash.svg b/svg/splash.svg similarity index 100% rename from vds-app/assets/splash.svg rename to svg/splash.svg diff --git a/vds-app/App/assets/header.png b/vds-app/App/assets/header.png new file mode 100644 index 0000000..8523485 Binary files /dev/null and b/vds-app/App/assets/header.png differ diff --git a/vds-app/App/components/ExamQuestions.js b/vds-app/App/components/ExamQuestions.js index 2f2ab63..dc3fb91 100644 --- a/vds-app/App/components/ExamQuestions.js +++ b/vds-app/App/components/ExamQuestions.js @@ -1,4 +1,3 @@ -import testQuestions from "../data/test" import aerodynamicsQuestions from "../data/aerodynamics" import firstAidQuestions from "../data/firstAid" import flightSafetyQuestions from "../data/flightSafety" diff --git a/vds-app/App/screens/QuizIndex.js b/vds-app/App/screens/QuizIndex.js index 373f3d2..d10fd8c 100644 --- a/vds-app/App/screens/QuizIndex.js +++ b/vds-app/App/screens/QuizIndex.js @@ -1,7 +1,6 @@ import React from "react" import { ScrollView, StatusBar, } from "react-native" -import testQuestions from "../data/test" import aerodynamicsQuestions from "../data/aerodynamics" import firstAidQuestions from "../data/firstAid" import flightSafetyQuestions from "../data/flightSafety" diff --git a/vds-app/App/screens/Splash.js b/vds-app/App/screens/Splash.js index df07def..a7e2e6e 100644 --- a/vds-app/App/screens/Splash.js +++ b/vds-app/App/screens/Splash.js @@ -7,15 +7,14 @@ import { colors, texts, credentials } from "../components/Variables" import { examQuestions } from "../components/ExamQuestions" const screen = Dimensions.get("window") -const logo = require("../assets/logo.png") +const header = require("../assets/header.png") const maxTime = 0 // 10 let interval = null const styles = StyleSheet.create({ container: { backgroundColor: colors.dark_blue, - flex: 1, - paddingHorizontal: 20 + flex: 1 }, bannerContainer: { backgroundColor: colors.dark_blue, @@ -65,18 +64,19 @@ const styles = StyleSheet.create({ }, safearea: { flex: 1, - marginTop: 10, - justifyContent: "space-between" + marginTop: 0, + justifyContent: "space-between", + paddingHorizontal: 20 }, - logoContainer: { - marginTop: 50, + headerContainer: { + marginTop: 0, alignItems: "center", justifyContent: "center", width: "100%", height: 150 }, - logo: { - width: 150 + header: { + width: "100%" } }) @@ -116,8 +116,8 @@ class Splash extends React.Component { return ( - - + + @@ -125,7 +125,7 @@ class Splash extends React.Component {