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 …

[!] The ‘Pods-Runner’ target has transitive dependencies that include statically linked binaries: (/Users/masahirookubo/myprojects/ios/Flutter/Flutter.framework)

1> flutter clean2> Delete ios/Flutter/Flutter.framework3> pod install でいけました 参考記事 [!] The ‘Pods …

Unhandled Exception: PlatformException(unregistered_view_type, trying to create a view with an unregistered type, unregistered view type: ‘plugins.flutter.io/google_maps’)

flutterにgoogle map apiを入れたらタイトルのエラーが発生 これで直りました 参考記事 google maps Trying to create a platform view of unregiste …

The following assertion was thrown while handling a gesture:
Navigator operation requested with a context that does not include a Navigator.
The context used to push or pop routes from the Navigator must be that of a widget that is a
descendant of a Navigator widget.

flutterでRaisedButton にNavigator を入れたらタイトルのエラーが発生しました 参考記事 【Flutter】画面遷移でのエラーについて

Another exception was thrown: RangeError (index): Invalid value: Valid value range is empty: 1

タイトルのエラーが発生 調べたら初歩的で、ListViewのlengthをしていないと発生するらしいです こちらが解決後のコード 参考記事 RangeError (index): Invalid value: Valid …