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…
Tag Archives: android
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!
Generics and variance in Kotlin
It’s been a while, but we’re back, and we start with an introduction to generics and variance in Kotlin. Read more
Kotlin coroutines in Android: suspend functions
In the previous post, we reviewed the basic concepts in Kotlin coroutines. In this post, we will take a closer look at its implementation. Read more
Overriding extension functions in Kotlin
Extension functions provide an instant way to enrich a class functionality without accessing its source code… Read more