Skip to content

Instantly share code, notes, and snippets.

@betomoedano
Created December 24, 2021 03:58
Show Gist options
  • Save betomoedano/a8d670eda3f0b90be54cbc41a85cafcf to your computer and use it in GitHub Desktop.
Save betomoedano/a8d670eda3f0b90be54cbc41a85cafcf to your computer and use it in GitHub Desktop.
Code for StackScreen
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