Flutter

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 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 »

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 »