This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
To generate a mocking class using Mockito @GenerateMocks
annotation you and to genereate dependency injection configurations can execute in your terminal
flutter pub run build_runner watch --delete-conflicting-outputs
Bear in mind that the watch
flag will be waiting and updating on the changes you make in your code. If you don't want this behaviour you can remove that flag.
To test the application you can use the VSCode tool for Flutter or execute the VSCode command Dart: Run all tests
after running ctrl + shift + p
.