powerfun-setting/src/PrivacyScreen.tsx

35 lines
1.0 KiB
TypeScript
Raw Normal View History

2025-11-05 15:18:15 +08:00
import React from "react";
import { View, Text, ScrollView, StyleSheet } from "react-native";
export default function PrivacyScreen() {
return (
<ScrollView style={styles.container}>
<Text style={styles.title}></Text>
<Text style={styles.text}>
使使
{"\n\n"}
</Text>
</ScrollView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 20,
backgroundColor: "#fff",
},
title: {
fontSize: 22,
fontWeight: "bold",
marginBottom: 15,
},
text: {
fontSize: 16,
lineHeight: 24,
color: "#333",
},
});