Louiejay Lomibao

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 »

How to Use setState in Flutter

In this article I am going to utilize the setState function to change a button’s properties like color, text and icon on my Flutter App. You can read what’s a setState here: https://www.nucleiotechnologies.com/what-is-setstate-in-flutter/ The App First your app should be a StatefulWidget before using setState function. In my case my app is already a StatefulWidget. …

How to Use setState in Flutter Read More »

Split Your Widgets in Flutter

Why? Google’s Flutter is a framework that allows you to create a UI as code, with each building block called a widget, resulting in a widget tree. Any software developer should be concerned with making this tree readable and maintainable. How? Splitting an app into widgets is the process of dividing large widgets into smaller, …

Split Your Widgets in Flutter Read More »

Flutter – Navigating in BottomNavigationBar

In today’s blog post I’m focusing in BottomNavigationBar widget on Flutter. I’m going share some codes and how to’s in Flutter with BottomNavigationBar. Let’s get right into it! In my last blog post I made this simple app. But if we try to tap the settings in the BottomNavigationBar widget it doesn’t do anything nor …

Flutter – Navigating in BottomNavigationBar Read More »

How to Make Your First Flutter App (2022)

Hello! I’m going to make my first Flutter app and teach you how to resolve beginner issues I also face in Visual Studio Code. I’m going to cover a lot of stuff from running our first Flutter app in VSCode to finishing our first app. This is gonna be a long blog so buckle up …

How to Make Your First Flutter App (2022) Read More »