LoginSignup
0
0

More than 5 years have passed since last update.

react native memo (Mac High Sierra)

Posted at

Getting Started

cd AwesomeProject

Install Node, Watchman

brew install watchman

install react-native-cli

npm install -g react-native-cli

install Xcode

Xcodeが入ってない場合には入れる

Creating a new application

react-native init AwesomeProject

Running your React Native application

cd AwesomeProject
react-native run-ios

シミュレーターが無事に起動しました。

Kobito.BQjTnq.png

app.jsをちょっと変えて保存、Ctrl+Rで再読み込みしてみる。

app.js
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>
          Welcome to React Native!! Year!!

変わりました

Kobito.gU33dT.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0