-
RxDart with BLoC Pattern in Flutter
Have you already heard about reactive programming? RxDart is a reactive functional programming library for Dart language, based on ReactiveX. Dart alr...
Read More >
-
Flutter Google Maps
Creating Google Maps API Key
To Display Google Map, we must need API Key.
Step 1:
Step 2: Enable Service
We require
Maps SDK for...
Read More >
-
Dynamic Links using Flutter and Firebase
What is a dynamic link?
A Dynamic-link is a smart link that provides the best user experience on your native app such that you can control t...
Read More >
-
Facebook Authentication With Firebase In Flutter
In this article, we will add Firebase Authentication and Facebook Auth login to a Flutter application, which will authenticate a user by logging in us...
Read More >
-
Background local notifications in Flutter
Sometimes user wants some very important features like the latest news updates, latest articles updates, weather condition alert, complete his/her pro...
Read More >
-
Google Sign-In & Firebase Authentication Using Flutter
Firebase Authentication provides backend services, easy-to-use SDKs, and ready-made UI libraries to authenticate users to your app. It supports a...
Read More >
-
Avoiding Jank in Flutter
Parsing large JSON files can lead to poor performance of apps and shuttering animations. If parsing and computing a large JSON file take more than 16 ...
Read More >
-
Facebook and Google Authentication Login Without Firebase in Flutter
Install visa:
Open your pubspec.yaml file and add visa: under dependencies.
From the terminal: Run flutter pub get.
Add the releva...
Read More >
-
Share Data To Another Application In Flutter
We share information from our application to another, much the same as when you hit the button and share text, any link, and an image inside your gall...
Read More >
-
AutoScroll image slider without any package or dependency
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
PageController controller = PageController();
fi...
Read More >