react native でサンプルアプリを立ち上げる🔭
前回は環境構築したので、今回のゴールは簡単なアプリっぽいものを立ち上げるまでとする⚔️ sampleProjectという名前のサンプルプロジェクトを作成するために下記コマンドを叩く。 と、沢山の選択肢が示される。 $ expo init sampleProject ? Choose a template: » - Use arrow-keys. Return to submit. ----- Managed workflow ----- // Expo のサポート下で開発できる(簡単) blank a minimal app as clean as an empty canvas // 1番シンプルな状態で blank (TypeScript) same as blank but with TypeScript configuration // 1ページからスタート > tabs (TypeScript) several example screens and tabs using react-navigation and TypeScript // 複数の画面遷移ができる状態に ----- Bare workflow ----- // Expo なしでの開発に近く、カスタマイズ性は上がる(難しい) minimal bare and minimal, just the essentials to get you started 今回は勉強なので、1番しっかりしてそうな「複数の画面遷移ができる状態に」を選択。...