Reme Le Hane
Reme Le Hane

Reme Le Hane

Follow
Follow
homeFlutter Web: Should I use it?Flutter Testingbadgesnewsletter
Series

Flutter Testing

Here we will cover various aspects of unit, widget and integration testing in Flutter

Articles in this series

Flutter: Data Testing

May 9, 20223 min read132 views

In a previous post, we discussed using find.byPredicate for more accurate and bulletproof widget testing. Flutter: Up your testing game In this post...

Flutter: Data Testing

Widget testing: Dealing with Renderflex Overflow Errors

Apr 19, 20223 min read212 views

We've all certainly seen it in our UI before, "A RenderFlex overflowed by...", and we all know this error means that our UI is painting beyond the...

Widget testing: Dealing with Renderflex Overflow Errors

Flutter: Up your testing game

Apr 12, 20224 min read190 views

Today we going to look at a great utility provided by Flutter's testing framework which gives us a lot more power when it comes to accurately test our...

Flutter: Up your testing game

Automated Unit Testing with GitHub Actions

Sep 12, 20213 min read197 views

Today we going to discuss the nicely simple way in which you can use GitHub's actions to automate the unit testing for your Flutter project. This can...

Automated Unit Testing with GitHub Actions

Unit testing DateTime.now() with the help of Dart extensions

Jul 16, 20213 min read176 views

The Problem… Often times within our applications, both on the UI and Data sides we will need to set “defaults” for dates, the simplest way to do that...

Unit testing DateTime.now() with the help of Dart extensions

Unit Testing a Utility function that returns a Widget

Mar 31, 20213 min read77 views

Probably not too common a use case, but for me I have a utility function for handling in-app navigation from the in-app web view webview_flutter while...

Unit Testing a Utility function that returns a Widget