30 lines
593 B
TypeScript
30 lines
593 B
TypeScript
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.title}>FarmaFinder</Text>
|
|
<Text style={styles.subtitle}>Busca medicamentos</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#F2F2F7',
|
|
},
|
|
title: {
|
|
fontSize: 28,
|
|
fontWeight: 'bold',
|
|
color: '#1C1C1E',
|
|
},
|
|
subtitle: {
|
|
fontSize: 16,
|
|
color: '#8E8E93',
|
|
marginTop: 8,
|
|
},
|
|
});
|