Created
April 8, 2023 20:16
-
-
Save alperbayram/84e46ac1e92241a2fc795a5eaef7e8b6 to your computer and use it in GitHub Desktop.
Profile
This file contains hidden or 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 { 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