12345678910111213141516171819202122232425262728293031323334 |
- //Nathalia A. ALicea Maldonado
- //Pantalla de Home. No se está utilizando.
-
- import React from 'react';
- import {View, Text, StyleSheet, Button} from 'react-native';
-
- export default function Home({navigation}){
- return(
- <View style = {styles.container}>
- <View style = {styles.content}>
- <Text style = {styles.text}>
- Home is here
- </Text>
- </View>
- </View>
- )
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1
- },
- content: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- backgroundColor: '#03cafc'
- },
- text: {
- fontSize: 20,
- color: '#ffffff',
- fontWeight: '800'
- }
- })
|