Skip to content

Commit

Permalink
Version 1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
KryptoCrash committed Feb 8, 2020
1 parent e7f53e8 commit bc0ce6d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
Binary file removed Assets/App Icons/Android/Icon-512.png
Binary file not shown.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"web"
],
"version": "1.0.0",
"orientation": "portrait",
"orientation": "default",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"image": "./assets/symbols/16.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
Expand Down
Binary file modified assets/Images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 14 additions & 7 deletions screens/FavoritesScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ export default class FavoritesScreen extends React.Component {
<View style={styles.headerContainer}>
<Text style={styles.header}>Favorites</Text>
</View>
<View style = {styles.largeTextContainer}>
<Text style = {styles.largeText}>Coming Soon!</Text>
<View style = {styles.bodyContainer}>
<View style = {{flex: 1}}></View>
<View style = {styles.largeTextContainer}>
<Text style = {styles.largeText}>Coming Soon!</Text>
</View>
<View style = {{flex: 1}}></View>
</View>
</View>
);
Expand All @@ -30,7 +34,7 @@ FavoritesScreen.navigationOptions = {

const styles = StyleSheet.create({
container: {
flex: 1,
flex: 1,
backgroundColor: "#fff"
},
headerContainer: {
Expand All @@ -43,16 +47,19 @@ const styles = StyleSheet.create({
fontSize: 20,
textAlign: "center"
},
bodyContainer: {
flex: 1,
alignSelf: "center"
},
largeTextContainer: {
flex: 1,
flexWrap: "wrap",
flexDirection: "column",
alignItems: "center",
justifyContent: "center"
flexDirection: "row",
alignItems: "center"
},
largeText: {
color: "#ddd",
fontSize: Dimensions.get('window').width * 0.25,
fontSize: Dimensions.get('screen').width * 0.25,
textAlign: "center"
}
});
1 change: 0 additions & 1 deletion screens/ItemScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ const styles = StyleSheet.create({
borderBottomColor: '#bbb',
},
header: {
flex: 1,
fontSize: 20,
textAlign: "center",
alignSelf: "center"
Expand Down

0 comments on commit bc0ce6d

Please sign in to comment.