3 changed files with 32 additions and 3 deletions
@ -1,14 +1,30 @@ |
|||||
import React from "react"; |
import React from "react"; |
||||
import { Text, View } from "react-native"; |
import { Text, View } from "react-native"; |
||||
import { useState } from "react"; |
import { useState } from "react"; |
||||
|
import { styles } from './styles/AppStyles'; |
||||
|
|
||||
function Home(props){ |
function Home(props){ |
||||
|
|
||||
return ( |
return ( |
||||
<View> |
<View style={[styles.flex]}> |
||||
<Text style={{color: 'black'}}>test</Text> |
<View style={[styles.flexHalf, styles.spaceAround]}> |
||||
|
<Text style={[styles.headerTitleFont, styles.centeredText, styles.darkText]}> |
||||
|
Square |
||||
|
<Text style={[styles.green, styles.headerTitleFont, styles.centeredText, styles.lightText]}> |
||||
|
{' not '} |
||||
|
</Text> |
||||
|
<Text style={[styles.headerTitleFont, styles.centeredText, styles.darkText]}> |
||||
|
Square |
||||
|
</Text> |
||||
|
</Text> |
||||
|
</View> |
||||
|
<View style={styles.flex}> |
||||
|
<Text style={[styles.largeFont, styles.centeredText, styles.darkText]}> |
||||
|
Loading... |
||||
|
</Text> |
||||
|
</View> |
||||
</View> |
</View> |
||||
); |
) |
||||
} |
} |
||||
|
|
||||
export default Home; |
export default Home; |
Loading…
Reference in new issue