Below you will find pages that utilize the taxonomy term “dart”
Posts
debug flutter iOS application in MacOS
iPhone Enable developer mode:
Setting -→ PPrivacy & Security -→ Developer Mode
IDE Android Studio It is quite straight forward in Android Studio.
Install flutter plugin and restart Android studio
VSCode select the Run and Debug icon in the Activity Bar
Select "Dart & Flutter" in "RUN AND DEBUG" dropdown list Edit flutter iphone setting Change launch.
Posts
Unit test and widget test in flutter
It is quite easy to refactor code using IDEs, however it will be a different story considing to refactor to testable code.
Concerns The refactor functionality in IDE is based on rigor theories and algorithm to make sure the refactors don’t change the behaviours of programs and get it better organized. One of the theories, can be found here
Target Refactor code to testable codes following best practices.
Posts
How to resolve podfile dependency issues of google_mobile_ads in flutter
There are 27 issues with podfile dependency issues of google_mobile_ads in its repository googleads-mobile-flutter at github Here you can find those issues. My team encountered this issue in the past weeks. Today I had the issue again. To save my time in future, I kept my approach here this time.
Use the following search keywords in cs.github.com
path:pubspec.yaml google_mobile_ads firebase_analytics
locate a good candidate with appropriate version of combinations of the following components.
Posts
conditional compiling in flutter project
In the last week, I intermittently worked on how to compile a flutter project conditionally like the way c/c++ in busy daily work schedules. I knew that flavor is the way to go, however there are still serveral issues opened to explore to make it better or to understand the rationale behind the scene.
Dependency Injections using get_it and injectable: Tree Shaking Capability
Pack only neccessary components into the mobile app: