-
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 >
-
Provider in flutter
The provider package is an easy-to-use package which is basically a wrapper around the InheritedWidgets that makes it easier to use and manage. It pro...
Read More >
-
Object Cloning
Object Cloning
Creating a new object by copying the current instance/object is called object cloning. It’s important for a beginner programme...
Read More >