Monthly Archives: November 2021

How To Structure Flutter App When Using BLoC Pattern

This entry is part 1 of 2 in the series Developing Flutter Apps with BLoC Pattern

When using BLoC as the state management technique for your Flutter app, your best bet is to open a folder called packages and put all of the code for all of your BLoCs into it. BLoC in Packages Folder I’ve … Continue reading

Posted in Flutter, Programming | Tagged , , , , , , , | Leave a comment

From Endpoint in Postman to Flutter Screen and App

When developing APIs, the usual procedure is to test them with Postman, from the comfort of your own desktop. Once you have everything nailed on the server and you are content with the results in Postman, here is what you … Continue reading

Posted in Dart, Flutter | Leave a comment

How To Convert Objective C App To Flutter

Here is what I generally do when converting Objective C apps to Flutter: 1) Compile the current code you have with Xcode 13.1 (the latest version I am now using) That will give me an insight into what the app … Continue reading

Posted in Dart, Flutter, iOS, Objective C, Programming | Leave a comment

Flutter BLoC Example and Data Connection Checker Plugin

This entry is part 2 of 2 in the series Developing Flutter Apps with BLoC Pattern

Flutter BLoC Example for Checking Data Connectivity Checking whether there is Internet connection at any given time is a hallmark of a professionally crafted Flutter app. Here is a Flutter BLoC example using a well known DataConnectionChecker plugin. In What … Continue reading

Posted in Flutter, Programming | Tagged , , , , , , , , | Leave a comment