← 返回教程列表
⚛️ React Native 教程
基础组件
import React from "react";
import { View, Text, Button, StyleSheet } from "react-native";
export default function App() {
return (
Hello, React Native!
);
}
const styles = StyleSheet.create({
container: { flex: 1, justifyContent: "center", alignItems: "center" },
text: { fontSize: 20 }
});