React Native - แอพ
หากคุณเปิดแอปเริ่มต้นคุณจะสังเกตได้ว่าไฟล์ app.js มีลักษณะเป็นอย่างไร
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View style = {styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<Text>Changes you make will automatically reload.</Text>
<Text>Shake your phone to open the developer menu.</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
เอาต์พุต
สวัสดีชาวโลก
หากต้องการแสดงข้อความง่ายๆว่า“ ยินดีต้อนรับสู่ Tutorialspoint” ให้ลบส่วน CSS และแทรกข้อความที่จะพิมพ์โดยใช้แท็ก <text> </text> ภายใน <view> </view> ดังที่แสดงด้านล่าง
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View>
<Text>Welcome to Tutorialspoint</Text>
</View>
);
}
}