diff --git a/builds/VDS-Quiz-364bf545b3fe4b068b03bed4c78d0461-signed.aab b/builds/VDS-Quiz-364bf545b3fe4b068b03bed4c78d0461-signed.aab deleted file mode 100644 index 37401c0..0000000 Binary files a/builds/VDS-Quiz-364bf545b3fe4b068b03bed4c78d0461-signed.aab and /dev/null differ diff --git a/builds/VDS-Quiz-7c9b0c81f6ce4207838ccd204b6f2234-signed.aab b/builds/VDS-Quiz-7c9b0c81f6ce4207838ccd204b6f2234-signed.aab deleted file mode 100644 index 24d0f8c..0000000 Binary files a/builds/VDS-Quiz-7c9b0c81f6ce4207838ccd204b6f2234-signed.aab and /dev/null differ diff --git a/builds/application-90a530f9-d8c4-49b9-a848-2f2b8bd54e1a.aab b/builds/application-90a530f9-d8c4-49b9-a848-2f2b8bd54e1a.aab deleted file mode 100644 index edc6fca..0000000 Binary files a/builds/application-90a530f9-d8c4-49b9-a848-2f2b8bd54e1a.aab and /dev/null differ diff --git a/vds-app/App/components/Banner.js b/vds-app/App/components/Banner.js index 2d8fac5..742004c 100644 --- a/vds-app/App/components/Banner.js +++ b/vds-app/App/components/Banner.js @@ -9,18 +9,28 @@ const screen = Dimensions.get("window") const styles = StyleSheet.create({ container: { - //backgroundColor: colors.yellow, + backgroundColor: colors.yellow, flex: 1, alignItems: "center", justifyContent: "center", - marginVertical: 20 + marginTop: 20, + height: 150, + width: "100%" } }) export const Banner = () => { + + let banner + + if(__DEV__) { + banner = DEV BANNER + } else { + banner = + } return ( - + {banner} ) } diff --git a/vds-app/App/screens/Quiz.js b/vds-app/App/screens/Quiz.js index 6e33dc1..75ebef9 100644 --- a/vds-app/App/screens/Quiz.js +++ b/vds-app/App/screens/Quiz.js @@ -44,7 +44,7 @@ const styles = StyleSheet.create({ }, scrollView: { //margin: 10, - height: screen.height-150 + height: screen.height-20 }, bg: { width: "100%", @@ -257,14 +257,14 @@ class Quiz extends React.Component { : } + + + - - - ) }