Entries for 'Jignasa Solanki'
-
Stream Builder In Flutter
The StreamBuilder that can listen to exposed streams and return widgets and capture snapshots of received stream data. The stream builder takes two ar...
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 >
-
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 >
-
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 >
-
Create A Simple REST API in PHP
What is an API?
API stands for Application Programming Interface. It's an interface that allows applications to communicate with each other. In t...
Read More >
-
Webscoket in flutter
WebSockets represent a long-awaited evolution in client/server web technology. It defines a fully duplex bi-directional communication channel between ...
Read More >
-
Authenticate with Firebase on Android using a Phone Number
You can use Firebase Authentication to sign in to a user by sending an SMS message to the user's phone. The user signs in using a one-time code co...
Read More >
-
Image picker flutter
Image picker plugin is for iOS and Android for picking images from the image library and taking new pictures with the camera.
1.1 Add dependency in...
Read More >