Created
December 24, 2021 04:01
-
-
Save betomoedano/2f9cd894be71d894f67538314c8c4017 to your computer and use it in GitHub Desktop.
Code for Settings Screen
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 React from "react"; | |
import { View, Text } from "react-native"; | |
const SettingsScreen = () => { | |
return ( | |
<View> | |
<Text | |
style={{ | |
fontSize: 30, | |
textAlign: "center", | |
marginTop: "20%" | |
}} | |
>Settings Screen</Text> | |
</View> | |
); | |
} | |
export default SettingsScreen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment