You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. import React from "react";
  2. import { View, Text, StyleSheet } from "react-native";
  3. import Layout from "@Components/Layout/Layout";
  4. import { useTheme } from "@Styles";
  5. const ProfileScreen = () => {
  6. const { colors } = useTheme();
  7. return (
  8. <Layout>
  9. <View style={styles.container}>
  10. <Text style={{color: colors.textPrimary}}>Profile</Text>
  11. </View>
  12. </Layout>
  13. )
  14. }
  15. const styles = StyleSheet.create({
  16. container: {
  17. flex: 1,
  18. justifyContent: 'center',
  19. alignItems: 'center'
  20. }
  21. })
  22. export default ProfileScreen;