Created
December 24, 2021 03:58
-
-
Save betomoedano/a8d670eda3f0b90be54cbc41a85cafcf to your computer and use it in GitHub Desktop.
Code for StackScreen
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 StackScreen = () => { | |
return ( | |
<View> | |
<Text | |
style={{ | |
fontSize: 30, | |
textAlign: "center", | |
marginTop: "20%" | |
}} | |
>Stack Screen</Text> | |
</View> | |
); | |
} | |
export default StackScreen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment