Flutter Testing Part 3: Golden TestsWelcome to part 3 of the flutter testing series. By this point you are already familiar with writing unit tests and widget and page tests in flutter. If you have not already, I highly recommend you to go through the earlier parts in the series: Part...Apr 13, 2022·11 min read
[Part 1] Testing Coroutines and Kotlin FlowsTesting coroutines in Kotlin can be tricky. Tests need to be setup correctly to avoid flakyness. In this tutorial you will learn how to write tests for coroutines. We will use an Android project however, the concepts can be applied to any Kotlin base...Nov 20, 2021·6 min read
Architecture patterns in Flutter (BLoC vs Provider)Flutter has an ever-increasing ecosystem of state management solutions. The flutter documentation itself lists out more than 10 options! It is a daunting task to figure out which solution to choose. Before we get into any more details let’s first get...Oct 24, 2021·7 min read
Listening to incoming SMS on Flutter with Telephony packagePhoto by Artur Shamsutdinov on Unsplash The Telephony package is a flutter plugin that provides APIs for various things like querying the messages on device, retrieving various network details, etc. In this article, let’s take a look at one specific ...Jun 6, 2021·3 min read