by Marcin Szałek | Nov 14, 2017 | Flutter, Weight Tracker
Line Chart in Flutter – WeightTracker 6 In this post I will go through the process of creating line chart for my WeightTracker app. Since there is no official support for drawing charts yet, we will do it on our own . Expected result is a Widget displaying...
by Marcin Szałek | Nov 6, 2017 | Flutter, Weight Tracker
Flutter TabBar Example – WeightTracker 5 In this short post, I will document how I added TabBar to my WeightTracker app. Note: I am using Redux to populate data to view, if you are not familiar with Redux, just ignore StoreConnector widget and focus only on...
by Marcin Szałek | Oct 11, 2017 | Flutter, Weight Tracker
Reduxing Flutter Firebase App – WeightTracker 4 In this post I’m going to go through how I added flutter_redux library to my existing Firebase-connected app. The presented development is part of my Weight Tracker app (simple app for tracking weight) and will be...
by Marcin Szałek | Aug 29, 2017 | Flutter, Weight Tracker
Firebase Database in Flutter – WeightTracker 3 In this post, I’m going to go through adding Firebase Database to a Flutter application. The presented development is part of my Weight Tracker app (simple app for tracking weight), so the development will be based...
by Marcin Szałek | Aug 21, 2017 | Flutter, Weight Tracker
Creating full-screen dialog in Flutter – WeightTracker 2 In this post, I would like to go through the process of creating a full-screen dialog. Dialogs like that are used for more complex user operations that would be inappropriate for normal dialog. You can...
by Marcin Szałek | Jul 22, 2017 | Flutter, Weight Tracker
Flutter ListView Tutorial – WeightTracker 1 In this post, we are going to create a basic ListView in Flutter with dynamically added values. Let’s get to it! 🙂 Simple ListView This code results in simplest list you could imagine. ListView widget is our main...