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.
26 lines
607 B
26 lines
607 B
import React from "react"
|
|
import { View, Text, StyleSheet } from "react-native";
|
|
|
|
export function TopBar(){
|
|
return (
|
|
<View style={TopBarStyle.bar}>
|
|
<Text style={TopBarStyle.title}>La Super Météo</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const TopBarStyle = StyleSheet.create({
|
|
title : {
|
|
fontSize : 30,
|
|
fontWeigh : 'bold',
|
|
color : '#B6D0E2'
|
|
},
|
|
bar : {
|
|
width : '100%',
|
|
backgroundColor : '#E9967A',
|
|
alignItems : 'center',
|
|
flexDirection : 'row',
|
|
justifyContent : 'space-evenly',
|
|
marginBottom : '150%'
|
|
}
|
|
}); |