react-native
こんにちは世界
サーチ…
index.ios.jsまたはindex.android.jsの編集
index.ios.js
またはindex.android.js
を開き、 <View> </View>
間のすべてを削除します。その後、 <Text> Hello World! </Text>
を実行し、エミュレータを実行します。
Hello World!
画面に書かれている!
おめでとう!あなたは最初のHello Worldをうまく書きました!
こんにちは世界!
import React, { Component } from 'react';
import { AppRegistry, Text } from 'react-native';
class HelloWorldApp extends Component {
render() {
return (
<Text>Hello world!</Text>
);
}
}
AppRegistry.registerComponent('HelloWorldApp', () => HelloWorldApp);
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow