Skip to content

Commit

Permalink
Adding app title
Browse files Browse the repository at this point in the history
  • Loading branch information
saru2020 committed Dec 9, 2017
1 parent 0d4c566 commit e708639
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Components/HomeView.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default class App extends React.Component {
render() {
return (
<View style={styles.verticalContainer}>
<Text style={styles.appTitle}>Musicly</Text>
<View style={styles.volumeControlContainer}>
<View style={styles.volumeControl}>
<VolumeView onVolumeControlStateChange={this.volumeControlChanged}/>
Expand Down Expand Up @@ -87,8 +88,14 @@ const styles = StyleSheet.create({
// backgroundColor: '#fff',
// alignItems: 'center',
justifyContent: 'flex-end',
right: 20,
top: 20
right: 40,
top: 40
},
appTitle: {
top: 40,
fontSize: 40,
fontWeight: 'bold',
color: '#ef3232'
}
});

Expand Down

0 comments on commit e708639

Please sign in to comment.