import React from "react" import { View, Text, StyleSheet, Platform } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; export function TopBar(){ const insets = useSafeAreaInsets(); const statusBarHeight = insets.top; return ( La Super Météo ); } const TopBarStyle = StyleSheet.create({ title : { fontSize : 30, fontWeigh : 'bold', color : '#B6D0E2' } });