You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
676 B
36 lines
676 B
import { StyleSheet } from 'react-native';
|
|
|
|
/*
|
|
Stylesheet for the TopBar component
|
|
*/
|
|
|
|
export default StyleSheet.create({
|
|
header: {
|
|
flexDirection: 'row',
|
|
backgroundColor: '#2D2C33',
|
|
width: '100%',
|
|
justifyContent: 'space-evenly',
|
|
alignItems: 'center',
|
|
},
|
|
avatar: {
|
|
borderRadius: 50,
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
icon: {
|
|
width: 50,
|
|
height: 50,
|
|
},
|
|
titre: {
|
|
flex: 0.7,
|
|
flexDirection: 'column',
|
|
textAlign: 'center',
|
|
fontSize: 30,
|
|
fontFamily: 'Helvetica',
|
|
fontWeight: 'bold',
|
|
letterSpacing: 0.25,
|
|
color: 'white',
|
|
},
|
|
});
|
|
|