This commit is contained in:
imeepos
2025-10-21 10:21:45 +08:00
parent 7e3f94bae3
commit 3a99ff96d5
28 changed files with 6981 additions and 176 deletions

31
app/settings/about.tsx Normal file
View File

@@ -0,0 +1,31 @@
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,
},
});