2024-11-07 17:47:25 +08:00
|
|
|
// src/views/ShopScreen.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
|
2024-11-13 10:18:08 +08:00
|
|
|
const ProfileScreen = () => {
|
2024-11-07 17:47:25 +08:00
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
2024-11-13 10:18:08 +08:00
|
|
|
|
2024-11-07 17:47:25 +08:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
2024-11-13 10:18:08 +08:00
|
|
|
backgroundColor: '#F3FCFF',
|
2024-11-07 17:47:25 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2024-11-13 10:18:08 +08:00
|
|
|
export default ProfileScreen;
|
2024-11-07 17:47:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|