How to Add Space Between Widgets in Flutter?
There are many options available in flutter which you can use to provide space and make UI attractive. So, in this article, we will see how to Add Space Between Widgets in Flutter. How to Add Space Between Widgets in Flutter? If
What is the endDrawer widget in Flutter?
The endDrawer is the panel that is displayed to the side of the body (Scaffold Widget). So, in this article, we will see what is the endDrawer widget in Flutter. What is the endDrawer widget in Flutter? We can open this hidden widget
How to Build Different Versions of Flutter App For QA/Dev/Prod?
Earlier we have been through the various articles on flutter. So, in this article, we will go through how to build different versions of the flutter app for QA/Dev/Prod. How to Build Different Versions of Flutter App For QA/Dev/Prod? Firstly, we need
How to Build a Singleton In Dart?
Only one instance of a class is created in a singleton pattern. So in this article, we will go through how to Build a Singleton In Dart. How to Build a Singleton In Dart? If you use Dart's factory constructors, it's easy to
How to Deactivate or Override the Android “BACK” Button In Flutter?
Sometimes in Flutter if you press the Back arrow at the bottom of the android screen, you go back to page one. You may want this button to not show up at all. So, in today's article, we'll see How
When to Use Provider.of vs. Consumer In Flutter ??
Suppose you are working on a large app with a lot of folders and files. Now if the user has interacted with your app say pressed a button or something like that then the app has to build itself again
What is Difference Between Sink and Stream In Flutter?
StreamSink is a StreamConsumer, which means it can take several streams and processes the events these streams emit. If it is the StreamSink of a StreamController then all events from the added streams are emitted by the stream created by the
How to Join data from two Firestore Collections In Flutter?
Earlier we have been through articles related to firebase like a how-to solve no firebase app has been created. So in this article, we will learn about How to Join data from two firestore collections in Flutter. Are you ready for
How to Set Rounded Bottom on Appbar In Flutter ?
AppBar Widget is the main widget in any Flutter app. It sits at the top of the application and mostly controls major action items. So in this article, we will go through how to set rounded bottom on AppBar in
How to Downgrade Flutter Version?
When users install and configure a Flutter SDK for the first time user need to point to the SDK Folder path for future projects. So in this article, we will go through How to downgrade Flutter SDK? How to Downgrade Flutter Version? Flutter
How can you run multiple integration tests with a single config file in Flutter?
Unit tests and widget tests are a great way of testing classes, functions, and widgets in isolation. However, it is just as important to test that all these moving parts work together as a whole and when dealing with complex
How to Make HTTP Request to In Flutter Web?
Most apps now a day require to fetch data from the internet. HTTP package provides the simplest way to fetch data from the internet. So in this article, we will take a deep dive into learning how to make an