Command PhaseScriptExecution failed with a nonzero exit code

まずはこちらを追加 podfileの末尾にこちらを追加 次はpodを更新 その後にビルドを実行したら下記のエラーが発生 次はこちらを実行 参考記事 Xcode 12, building for iOS Simulator …

Error: [core/not-initialized] Firebase has not been correctly initialized. Have you added the Firebase import scripts to your index.html file?

flutterをwebで走らせたらタイトルのエラー発生 どうやらfirebaseをimportできていないことが問題っぽいので、 web/index.html にこちらを追記 これでいけました 参考記事 Web Inst …

Thread 1: “Default app has already been configured.”

flutter + firebaseでタイトルのエラー発生 ios/AppDelegate.swiftにfirebaseを入れていたのですが、xcodeでデバッグしたらすでに設定されてます、と表示されていたのでコメントし …

[!] CocoaPods could not find compatible versions for pod “firebase_auth”:
In Podfile:
firebase_auth (from .symlinks/plugins/firebase_auth/ios)

flutterに firebase入れようとしたらタイトルのエラー発生 これで通りました 参考記事 CocoaPods could not find compatible versions for pod “Fireba …

Warning: CocoaPods not installed. Skipping pod install.
CocoaPods is used to retrieve the iOS and macOS platform side’s plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To install see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.

ターミナルからAndroid Studioを起動するとエラーが出ないようなので、こちらを実行 動きました! 参考記事 Android StudioでFlutterアプリ(iPhoneエミュレータ)を実行すると’Warni …

error: The argument type ‘CustomAppBar’ can’t be assigned to the parameter type ‘PreferredSizeWidget’. (argument_type_not_assignable at [christii_flutter] lib/screens/boards_screen.dart:17)

Appbarを共通化しようとしたらエラー発生 こんな感じで実装してエラー回避しましたー 参考記事 The AppBarDesign can’t be assigned to the parameter typ …

info: ‘typed’ is deprecated and shouldn’t be used. Use stream.cast instead.

これでいけました 参考記事 How do method cascades work exactly in dart? Dartのカスケード記法(..)はRubyでいうtap How should I use stream …