65 lines
1.0 KiB
JavaScript
65 lines
1.0 KiB
JavaScript
import { useState, useEffect } from 'react';
|
|
import {
|
|
View,
|
|
Text,
|
|
TextInput,
|
|
TouchableOpacity,
|
|
Image,
|
|
StyleSheet,
|
|
Alert,
|
|
} from 'react-native';
|
|
|
|
import { Provider, Toast } from '@ant-design/react-native';
|
|
|
|
import {
|
|
statusBarHeight,
|
|
paddingTopStatusBarHeight,
|
|
flexRow,
|
|
flexColumn,
|
|
flexSub,
|
|
flexShrink,
|
|
flexWrap,
|
|
flexnoWrap,
|
|
justifyStart,
|
|
justifyEnd,
|
|
justifyCenter,
|
|
justifyBetween,
|
|
justifyAround,
|
|
justifyEvenly,
|
|
alignItemsStart,
|
|
alignItemsEnd,
|
|
alignItemsCenter,
|
|
alignItemsStretch,
|
|
positionRelative,
|
|
positionAbsolute,
|
|
useStyles,
|
|
} from '@/assets/styles/css';
|
|
|
|
const Index = () => {
|
|
useEffect(() => {
|
|
|
|
}, []);
|
|
|
|
return (
|
|
<View
|
|
style={[
|
|
flexSub,
|
|
justifyCenter,
|
|
alignItemsCenter,
|
|
{
|
|
backgroundColor: '#fff',
|
|
},
|
|
]}>
|
|
<Text
|
|
style={{
|
|
fontSize: 24,
|
|
fontWeight: 'bold',
|
|
marginBottom: 20,
|
|
}}>
|
|
Profile
|
|
</Text>
|
|
</View>
|
|
);
|
|
};
|
|
export default Index;
|