Flutter

Bloc or Flutter Riverpod? I didn’t choose Riverpod for seven reasons.

Introduction The first question we encounter when starting a new Flutter project is, “What state management method do I choose?” There are several solutions available, but two well-known ones at the moment are Bloc and Riverpod. Bloc is what I’ve personally been using ever since I discovered Flutter. I recently tried Riverpod, and I think […]

Bloc or Flutter Riverpod? I didn’t choose Riverpod for seven reasons. Read More »

Flutter — Highlight any area in Google Maps

Initial Setup It’s time to get started! Here’s a simple screen with a google map widget that sets the initialCameraPosition and a marker. Add a Circle The first question is how to add a circle to our map. Replace ToDo: Add Circle with below code ???? The circle’s placement is determined by the centre. To position the

Flutter — Highlight any area in Google Maps Read More »

Extensions for Visual Studio Code to Boost Your Flutter Development

If you’re a Flutter developer, you most likely already like writing and debugging code with Visual Studio Code (VS Code). Now, though, what? There are many fantastic extensions available to enhance your experience even further! Let’s explore some of the top VS Code add-ons to enhance your ability to develop Flutter apps. Flutter Tree View:

Extensions for Visual Studio Code to Boost Your Flutter Development Read More »

In 100 seconds, integrate Firebase into your Flutter application.

You may already be familiar with adding Firebase ???? to your project, or you may not even know how to implement it. You can be certain of one thing: it takes longer than a minute. However, what if I told you that it only takes a few seconds to add Firebase to any Flutter project,

In 100 seconds, integrate Firebase into your Flutter application. Read More »

Create Complex Animations the Easy Way: Learn Flutter Animation by Doing

You may already know how to use Flutter to create simple animations. But what if we could turn these straightforward widgets into gorgeous animations? Let’s get started and learn how to make it happen, beginning with the amazing animation down below ????. So, let’s start Either start a fresh Flutter project or utilise an already-existing

Create Complex Animations the Easy Way: Learn Flutter Animation by Doing Read More »

Flutter Change App Language – Multi Languages – GetX Localization

Create a New Flutter Project or open Exisiting Project Use your favorite IDE( Android Studio, VSCode or IntelliJS) to build Flutter App, Create a new Flutter Project.I use Android Studio to build Flutter Application. Install/Add Flutter GetX Dependencies Open pubspec.yaml file & add getx Package under dependencies like this as shown below:dependencies: get: #any version After adding

Flutter Change App Language – Multi Languages – GetX Localization Read More »

booking app

Flutter tutorial | Taxi Booking App || Beginner To Expert

Welcome to the ultimate Flutter tutorial series! Join us on a journey from beginner to expert as we build a feature-packed Taxi Booking App from scratch. Whether you’re new to Flutter or a seasoned developer, this step-by-step guide will empower you with the skills and knowledge needed to create a robust and user-friendly app. Explore

Flutter tutorial | Taxi Booking App || Beginner To Expert Read More »

Flutter Tutorial | Flutter Image Picker From Camera & Gallery | Learn Flutter Fast

Welcome to our Flutter tutorial on image selection using the Flutter Image Picker plugin. In this tutorial, we’ll guide you through the process of integrating a powerful and flexible image picker into your Flutter app, allowing users to choose images from both their device’s gallery and directly from the camera. Adding dependencies in Flutter add image_picker_plus package

Flutter Tutorial | Flutter Image Picker From Camera & Gallery | Learn Flutter Fast Read More »

How to Open Email App With Address, Subject and Body in Flutter

In this post, we are going to show you how to open the default email app along with receiver’s email address, subject, and body text in Flutter. This example will help you to make the “email us” button on your contact page, which will be very easy for users to email you. Adding dependencies in

How to Open Email App With Address, Subject and Body in Flutter Read More »