| 12345678910111213141516171819202122232425 |
- import React from "react";
- import { View, Text, StyleSheet } from "react-native";
- import Layout from "@Components/Layout/Layout";
- import { useTheme } from "@Styles";
-
- const ProfileScreen = () => {
- const { colors } = useTheme();
- return (
- <Layout>
- <View style={styles.container}>
- <Text style={{color: colors.textPrimary}}>Profile</Text>
- </View>
- </Layout>
- )
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center'
- }
- })
-
- export default ProfileScreen;
|