by Marcin Szałek | Aug 22, 2018 | BMI Calculator, Flutter
BMI Calculator in Flutter – part 1 – Gender Hey, in this article I will go through implementation process of UI design. This time I teamed up with Johny Vino to fully implement one of his awesome designs: BMI Calculator in Flutter. The design I guess it’s...
by Marcin Szałek | Jul 31, 2018 | Flutter
UI Challenge – Flight Search In this post, I will go through another UI Challenge. I have picked Johny Vino‘s Flight Search design from 100 Mobile App Interactions which is mostly about animations and I will try to implement it as close as I can. Let’s get...
by Marcin Szałek | May 11, 2018 | Flutter
Filter Menu – UI Challenge In this post, I will do my first UI Challenge. As my goal I’ve picked this design by Anton Aheichanka from dribbble: The design Let’s get to it! First, we need to decompose this view into few smaller units: The clipped image on top...
by Marcin Szałek | Apr 16, 2018 | Flutter
Infinite Dynamic ListView In this post, I will quickly go through how to make an infinite ListView, that dynamically loads more data when a user scrolls down to the end. The final solution should look like this: Let’s get to it! Starting point Let’s start with a...
by Marcin Szałek | Mar 30, 2018 | Flutter
Dynamic Sliver FloatingActionButton In this post, I will walk through the process of creating FloatingActionButton that is pinned to the edge of FlexibleSpaceBar (shown below). Let’s get to it! TLDR: I exported pub package, so you can achieve similar FAB behavior....
by Marcin Szałek | Feb 26, 2018 | Flutter
“Ok Google, use my Flutter app!” In this post I would like to show you how I integrated Google Assistant/Google Now with my WeightTracker app written in Flutter (works only on Android). First, let’s see what we are trying to accomplish: (I had to type in...
by Marcin Szałek | Jan 28, 2018 | Flutter
Integrating Flutter with Coveralls This post quickly presents snippet on how to integrate Flutter app with Coveralls, which will give you feedback on test coverage in your app. Let’s get to it! Integrating with Travis At first, we need to integrate our app with...
by Marcin Szałek | Dec 18, 2017 | Flutter
Zooming with GestureDetector In the previous post, I described how to create own chart using CustomPainter. Now I will go through adding zoom effect to the diagram using GestureDetector. Starting point At first, let’s define our starting point. I have own...
by Marcin Szałek | Nov 26, 2017 | Flutter, Weight Tracker
Deleting entry and undoing deletion in snackbar – WeightTracker 7 In this post, I will go through how I added delete functionality to my WeightTracker app. I will also show how to implement ‘undo’ action on Snackbar with help from Redux Library. Let’s get to...