Tag: Flutter

Develop Flutter apps on slow computers

I never was really a gamer guy, not even a tech guy. I’m just good at programming and I enjoy it, so I turned that into my way of living. That said, I never owned a decent, fast computer to work. Most of the time that didn’t stop me, and through the years I’ve made a lot of t...

How to Install Flutter on Mac M1

This guide is a simplified setup on Flutter’s official page. There is no extra step that is not on Flutter’s official page. The reason I do this is to provide you with a more efficient and secure installation guide. First of all, you need an Integrated development environment (IDE) fo...

Setup Flutter Path or Install Flutter in Mac OS

Flutter has good installation documentation, but to update flutter path permanently on macOS need to follow this steps Download Flutter Framework from here https://flutter.dev/docs/get-started/install/macos If bash Shell then run this command in terminal nano ~/.bash_profi...

Fluttering into Action: A Step-By-Step Guide to Installing and Configuring Flutter SDK on macOS

System requirements To install and run Flutter, your development environment must meet these minimum requirements: Operating Systems: macOS, version 10.14 (Mojave) or later. Disk Space: 2.8 GB (does not include disk space for IDE/tools). Tools: Flutter is used git for installa...

Create Build Flavor in Flutter Application (iOS & Android)

When developing a Flutter app, you may want to share it with internal testers in a development environment, using a version of the app with a backend configured for development rather than production. This version of the app is called the dev variant. When you’re ready to release the app pu...

What is runZonedGuarded Function in Flutter ?

In Flutter, the runZonedGuarded function is a way to run a block of code (a callback) within a special zone while also providing a custom error handler to handle any uncaught exceptions that may occur during the execution of that code. This is often used for managing and handling errors in...

Cracking the Flutter Interview: Your Comprehensive Guide to Common Questions and Best Practices

Introduction  Flutter has been making waves in the tech industry with its robust toolkit for building natively compiled applications for mobile, web, and desktop. With its rising popularity, more companies are looking for skilled Flutter developers, and the interviews are getting tougher. Wh...

SOLID Principles in Flutter: Crafting Robust Apps

If you’re here, you’re likely on a quest to elevate your Flutter development skills. Today, we’ll venture into a topic that, while not exclusive to Flutter, can revolutionise how you structure your apps: the SOLID principles. Let’s unwrap this treasure chest of best practi...

Build a Collaborative Pixel Art App With Flutter and Firebase

Introduction You’ve probably heard about r/place or z/place recently and if you didn’t, you might wonder what am I talking about. Well, those are collaborative projects and social experiments on which users can edit a canvas by changing pixels’ colors one at ...