flutterでアプリにインストール手順

アプリにインストール

flutter run

失敗した場合はiosフォルダに移動し、pod installを実行。

cd ios
pod install

pod installが失敗した場合、以下のコマンドを実行する。

flutter clean
gem install --user-install ffi -- --enable-libffi-alloc
pod install
cd ../
flutter run

パッケージを入れた場合、flutter pub getで検証する。
以下は「video_player」を入れた場合の検証。

dependencies:
  video_player:
cmd$ dart pub get     // パッケージ検証
cmd$ flutter pub get  // パッケージ検証