うちのいぬ Tech Blog

Tech Blog of Uchinoinu/My dog

error

flutter runすると突然、Warning: CocoaPods not installed. Skipping pod install. というワーニングをはいた後に Error になり run が exit してしまう問題への対応

今回はflutter開発時のトラブルとその解決方法についてになります。 環境 Mac OS BigSur 11.4 VScode flutter 2.2.0 fvm 20200728現在 エラー内容 flutterで開発中 flutter run をすると、にこんなエラーが突然表示されることがありました。 Launching lib/m…

How to use Exceptions

Error handling is a common and hard concern for developers. There're some approaches to do it and Exception by try catch is one of them. In this article, I'll introduce how to use Exceptions in terms of Effective Dart. dart.dev Exceptions …

例外処理(Exceptions)の使い方

プログラムを書く上でよくある話ですが、 エラーハンドリングをちゃんとしましょう という話になります。 エラーハンドリングというのはいろいろなやり方があると思いますが、そのうちの一つが try catch による例外処理になるかと思います。 ここれでは eff…