diff --git a/js/Background.js b/js/Background.js index c81f8ef..dc1a358 100644 --- a/js/Background.js +++ b/js/Background.js @@ -1,6 +1,6 @@ import React from 'react' import { Image, View } from 'react-native' -import bgImage from './assets/bg_transparent.png' +import bgImage from './assets/bg_solid.png' import style from './Style' @@ -13,16 +13,12 @@ export const BaseView = (props) => { } export const BgView = (props) => { - const propStyle = { - backgroundColor: 'transparent' - } return ( ) diff --git a/js/Style.js b/js/Style.js index 2e55a83..1bd048f 100644 --- a/js/Style.js +++ b/js/Style.js @@ -5,7 +5,6 @@ export default StyleSheet.create({ flexDirection: 'column', flex:1, justifyContent:'center', - backgroundColor: 'transparent', paddingTop: 20, paddingLeft: 24, paddingRight: 24, @@ -20,7 +19,6 @@ export default StyleSheet.create({ imageContainer: { height: 200, flex: 0.8, - resizeMode: 'cover', justifyContent:'flex-end' }, cellTitle: { @@ -34,7 +32,6 @@ export default StyleSheet.create({ flexDirection: 'column', justifyContent: 'flex-start', alignItems: 'stretch', - backgroundColor: '#2B2C2C', paddingTop: 80, paddingRight: 12, paddingBottom: 20, @@ -43,7 +40,6 @@ export default StyleSheet.create({ pageBackground: { flex: 1, width: null, - height: null, - backgroundColor: '#2B2C2C' + height: null } })