Skip to content

Instantly share code, notes, and snippets.

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