When we talk about accessibility and accessible apps, we mean building applications that are “responsive” regardless of any user specific needs.
Read more…
Tag Archives: flutter
Property-based testing in Flutter
Although property-based testing is not one of the most “common” testing techniques, it’s been around for a while. Read more…
Flutter: testing method channels
Trying to put a class that uses some plugin or method channel into test harness? Read more…
Flutter: deep dive into the native world using method channels
But… wait a second… is not Flutter a cross-platform framework? Why should I need to get down into the “native” world then? Read more…
Flutter: test coverage
Wondering how to add code coverage to a Flutter project? Read more…
Flutter: Test Automation (III)
We finish the test automation series checking the pipeline configuration. Read more…
Flutter: Test Automation (II)
In this article, we will continue reviewing the configuration required to automate our test suite. Read more…
Flutter: Test Automation (I)
In this article, we will review the configuration required to automate our test suite. Read more…
Flutter: Golden testing
Golden tests are available by default in the Flutter framework, but their usage is not as frequent as the other types of testing. What are they exactly? When should we use them? Are they worth it? Let’s find out!
Flutter: making a Foldable widget
We continue reviewing animations in Flutter, and today it’s turn for tweens animations. Can we use them to build a foldable widget? Read more…