Flutter

How to generate an AAB file in flutter with VS code

To create an AAB file in Flutter with Visual Studio Code, open your project in VS Code. Install Flutter and Dart SDK, then navigate to your project’s root directory in the terminal. Use the command flutter build appbundle to generate the AAB file in build/app/outputs/bundle/release. Test it on a device or emulator before distribution. That’s …

How to generate an AAB file in flutter with VS code Read More »

How to fix screen overflow in Flutter using SingleChildScrollView

Flutter experiences screen overflow when a widget’s content surpasses the available space on the screen due to either oversized content or a small device screen. Various techniques exist in Flutter to deal with screen overflow, including the use of widgets such as SingleChildScrollView, ListView, Column or Row with Expanded, FittedBox, and MediaQuery. The Problem The …

How to fix screen overflow in Flutter using SingleChildScrollView Read More »

How to install firebase CLI in VS code for flutter – Part 1

The Firebase CLI (Command Line Interface) enables developers to interact with Firebase services through the terminal or command prompt. It facilitates managing Firebase projects and executing common tasks such as deploying Firebase hosting, managing Firebase functions, and managing Firestore databases. On the other hand, Flutter uses the Dart programming language and provides a rich set …

How to install firebase CLI in VS code for flutter – Part 1 Read More »

How To Use SQLite In Flutter

In this blog, we will learn basic SQLite procedures by constructing our own Flutter application. But first one might ask: What is SQLite? Let’s get into it! Foundationally, SQLite is an open-source database engine built in C. It is not a separate app, but rather a library that software developers incorporate into their applications. As …

How To Use SQLite In Flutter Read More »

What is Cubit in Flutter

There are several state management approaches, including Redux, MobX, bloc, flutter bloc, provider, and cubit. In flutter, state management is like a life support system in which the your entire App depends. Cubit is a simple management solution system. (canadian pharmacy tampa) It is part of the bloc package that emits new states via methods …

What is Cubit in Flutter Read More »

Useful Extensions in Visual Studio Code for Beginners

Although Visual Studio Coding is a fantastic code editor, its real strength lies in its excellent extension marketplace. VS Code becomes significantly better through extensions, which are available for practically any task you could need to complete in an IDE (Integrated Development Environment). Here are five (5) of my VS Code additions that might help …

Useful Extensions in Visual Studio Code for Beginners Read More »