Created
October 1, 2020 08:16
-
-
Save Us3r4gent/7575c8df147052f6f2d2ffc9f22cf5db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {View, Text, StyleSheet} from 'react-native'; | |
const Header = ({title}) => { | |
return ( | |
<View style={styles.header}> | |
<Text style={styles.text}>{title}</Text> | |
</View> | |
); | |
}; | |
Header.defaultProps = { | |
title: 'AppBar', | |
}; | |
const styles = StyleSheet.create({ | |
header: { | |
height: 90, | |
padding: 45, | |
backgroundColor: 'darkslateblue', | |
paddingBottom: 0, | |
}, | |
text: { | |
color: 'white', | |
fontSize: 25, | |
textAlign: 'center', | |
}, | |
}); | |
export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment