CoolFace
Apppublic

duqing2026/react-native-app

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
App.tsx24 linesDownload Raw Back to root
1import { StatusBar } from 'expo-status-bar';2import { StyleSheet, View } from 'react-native';3import { MainScreen } from './src/components/MainScreen';4 5/**6 * 应用根组件 - 引入主屏幕7 */8export default function App() {9  return (10    <View style={styles.container}>11      {/* 渲染主屏幕 */}12      <MainScreen />13      <StatusBar style="auto" />14    </View>15  );16}17 18const styles = StyleSheet.create({19  container: {20    flex: 1,21    backgroundColor: '#fff',22  },23});24