Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Created April 8, 2023 20:16
Show Gist options
  • Save alperbayram/84e46ac1e92241a2fc795a5eaef7e8b6 to your computer and use it in GitHub Desktop.
Save alperbayram/84e46ac1e92241a2fc795a5eaef7e8b6 to your computer and use it in GitHub Desktop.
Profile
import React from "react";
import { Text, View, StyleSheet } from "react-native";
function Profile() {
return (
<View style={styles.container}>
<Text>Profile</Text>
</View>
);
}
export default Profile;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#818CF8",
alignItems: "center",
justifyContent: "center",
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment