31 lines
810 B
TypeScript
31 lines
810 B
TypeScript
import React from 'react';
|
|
import { StyleSheet, ScrollView } from 'react-native';
|
|
|
|
import { ThemedView } from '@/components/themed-view';
|
|
import { ThemedText } from '@/components/themed-text';
|
|
import { useThemeColor } from '@/hooks/use-theme-color';
|
|
|
|
export default function AboutScreen() {
|
|
const backgroundColor = useThemeColor({}, 'background');
|
|
|
|
return (
|
|
<ScrollView style={[styles.container, { backgroundColor }]}>
|
|
<ThemedView style={styles.content}>
|
|
<ThemedText type="title">关于我们</ThemedText>
|
|
<ThemedText>此页面正在开发中...</ThemedText>
|
|
</ThemedView>
|
|
</ScrollView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
padding: 20,
|
|
},
|
|
}); |