Web Development

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 »

How to Boost Your Laptop Performance by Switching Power Management Option to High Performance in Windows 10

Switching to High Performance Power Plan: To open the Run dialog box, press the Windows + R keys together. Enter the following text on the run dialog box “powercfg.cpl” Choose High Performance from the Select a power plan drop-down menu in the Power Options window. If the High-Performance option isn’t visible, click the down arrow …

How to Boost Your Laptop Performance by Switching Power Management Option to High Performance in Windows 10 Read More »

How to Change Homepage in Google Chrome Browser

When you first launch your browser, you probably want a page to load that gives you quick access to the information you use the most. Using these steps, you can accomplish more by making Google Chrome your default homepage. Changing Your Homepage Option 1: Click the Options button in Chrome in the top right corner …

How to Change Homepage in Google Chrome Browser Read More »

How To Install IIS on a Computer Running Windows 8, 10, or 11

Internet Information Services is one of the first things Web Developers using ASP.NET will want to install on Windows (IIS). IIS versions differed between Windows 8, Windows 10, and Windows 11. Let’s take a look at how to set them up. Install IIS on Windows: To install it, press Windows+r, then enter appwiz.cpl into the …

How To Install IIS on a Computer Running Windows 8, 10, or 11 Read More »

How to import and Export Data using MongoDB compass

What is MongoDB Compass MongoDB Compass is a powerful GUI for querying, aggregating, and analyzing your MongoDB data in a visual environment. Compass is free to use and source available and can be run on macOS, Windows, and Linux. You can use MongoDB Compass to import and export data to and from collections. MongoDB Compass …

How to import and Export Data using MongoDB compass Read More »