The "XKCD" app exercise from the book Programming Flutter (with a fun typo in the app name!)
There have been several significant updates in the Flutter ecosystem since the book was published:
- Introduction of null safety
- Update to mocking approach to handle null safety
Recommended Flutter development environment:
- VS Code
- Flutter extension for VS Code
Run main.dart from within VS Code.
- Run
flutter test - Or, from within
test/unit_test.dart, run an individual test in VS Code
Note that integration tests make real network requests instead of mocking.
Run flutter drive --target=test_driver/selectionpage.dart
MIT