Programming

How to Convert JSON Object In Flutter

You might already know how to install a package and receive JSON requests from my last blog, but that JSON response isn’t a map object where you can utilize it for your project use. That is why today I am going to introduce a dart function that can decode the JSON object into something useful. …

How to Convert JSON Object In Flutter Read More »

How to Use Flutter Packages (http)

You don’t need to keep reinventing the wheel in flutter; there’s such a community that shares their pieces of code and functionality. These pieces of code are called packages, and today I am going to show you where you can find these packages, how to install them in your project, and lastly, how to use …

How to Use Flutter Packages (http) Read More »

How to Fix ParentDataWidget Exception In Flutter

Yesterday I encounter this error and today I specifically found a way to literally fix it and I definitely am going to share it to you for those who also struggles with it in a subtle way. The Error The error says “exception caught by widgets library” or “Exception was thrown: Incorrect use of ParentDataWidget”. …

How to Fix ParentDataWidget Exception In Flutter Read More »

How to Navigate Screens Using BottomNavigationBar – Flutter

Today in this blog I am going to combine all the screens I’ve made in the recent blog post, a compilation of work app that we can navigate through the use of BottomNavigationBar widget. BottomNavigationBarItem From my recent blog I am going to change the BottomNavigationBarItem to this code: Now the labels and icons are …

How to Navigate Screens Using BottomNavigationBar – Flutter Read More »

How to Use Cards in Flutter

Howdy! Today in this article I am going to show you how you can use Flutter’s card widget to organize your texts in an organized block manner. The App Suppose you’re writing an app similar to this one where the text doesn’t look organized: You can make it look more organized by using the flutter …

How to Use Cards in Flutter Read More »