This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Settings Screen | |
import { StyleSheet, Text, View } from "react-native"; | |
import React from "react"; | |
import { createStackNavigator } from "@react-navigation/stack"; | |
const Stack = createStackNavigator(); | |
const Settings = () => ( | |
<View style={styles.container}> | |
<Text>Settings</Text> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {View, Text, StyleSheet} from 'react-native'; | |
import React from 'react'; | |
const App = () => { | |
return ( | |
<View style={styles.container}> | |
<Text style={styles.text}>App</Text> | |
<Text style={styles.containerText}>App</Text> | |
</View> | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
project: { | |
ios: {}, | |
android: {}, | |
}, | |
assets: ['./assets/fonts'] | |
}; |