Skip to content

Instantly share code, notes, and snippets.

@Us3r4gent
Created October 1, 2020 08:16
Show Gist options
  • Save Us3r4gent/7575c8df147052f6f2d2ffc9f22cf5db to your computer and use it in GitHub Desktop.
Save Us3r4gent/7575c8df147052f6f2d2ffc9f22cf5db to your computer and use it in GitHub Desktop.
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