Sandeep

Flutter SWIPE List Items (Like Whatsapp Message reply do)

Flutter SWIPE List Items (Like Whatsapp Message reply do)

Flutter Swipe List Item Tutorial We all have seen the WhatsApp swipe to reply feature, it looks very cool when swipe and a reply text field appears. We can also make the same animation, same left, right swipe (WhatsApp has only right swipe though) events in our flutter project. Here is a very nice library…

Flutter Mutillevel DropdownButton Tutorial with real data example

Flutter Mutillevel DropdownButton Tutorial with real data example

Flutter Multilevel Drop Down Tutorial Flutter DropdownButton is a very important component of flutter app development, no app can be complete without using flutter dropdown. In this tutorial, we will focus on multilevel Dropdown which means, there will be a hierarchy of Dropdowns or you can say a parent-child relationship of Dropdown. Flutter multilevel dropdown…

Flutter Signature Pad Tutorial

Flutter Signature Pad Tutorial

Now flutter is very common in the mobile app development world. Every developer or even clients know about it and its power. In a very short time, spam flutter is on every developer’s mind. The result is awesome, developers are making very good plugins to make development easy, fast and up to the mark. Today…

Learning Flutter Widgets, Widget 8 – PageView

Learning Flutter Widgets, Widget 8 – PageView

PageView class A scrollable list that works page by page. Each child of a page view is forced to be the same size as the viewport. You can use a PageController to control which page is visible in the view. In addition to being able to control the pixel offset of the content inside the PageView, a PageController also lets you…

Learning Flutter Widgets, Widget 7 – FloatingActionButton

Learning Flutter Widgets, Widget 7 – FloatingActionButton

FloatingActionButton Widget class A material design floating action button. A floating action button is a circular icon button that hovers over content to promote a primary action in the application. Floating action buttons are most commonly used in the Scaffold.floatingActionButton field. Use at most a single floating action button per screen. Floating action buttons should be used for…

Learning Flutter Widgets, Widget 6 – FutureBuilder

Learning Flutter Widgets, Widget 6 – FutureBuilder

FutureBuilder<T> class Widget that builds itself based on the latest snapshot of interaction with a Future. The future must have been obtained earlier, e.g. during State.initState, State.didUpdateWidget, or State.didChangeDependencies. It must not be created during the State.build or StatelessWidget.build method call when constructing the FutureBuilder. If the future is created at the same time as the FutureBuilder, then every time the FutureBuilder‘s parent is rebuilt, the asynchronous task will be restarted….

TikTok Replica In Flutter And Firebase

TikTok Replica In Flutter And Firebase

Fluttet App – Tik Tik Replica Flutter app source code, Clone of TikTok with Flutter and Firebase. Check flutter app code on github Caracteristics Video Demo: https://youtu.be/sMKg6ILYgv0 -TikTok UI-Swipe Videos-Dynamic Video Data Source-User Data (Name, Image)-Animations(Image rotation) Libraries -video_player.-cloud_firestore:-cached_network_image Installation 1.-Clone or download this repository git clone https://github.com/salvadordeveloper/TikTok-Flutter.git 2.-Config your Firebase instance and insert the google-service.json…

Moviesfree4U –  Latest, Upcoming Movies

Moviesfree4U – Latest, Upcoming Movies

Flutter App – Moviesfree4U This is simple repository, that help in fetch latest, upcomming movies. Download flutter app source code from GitHub. APK You can Install and test latest Flutter Movies app from below ðŸ‘‡ Created & Maintained By Deepak Sharma If you found this project helpful or you learned something from the source code and…

Flutter Custom TextField With Label

Flutter Custom TextField With Label

TextField is most useful and used field in any development platform same as in Flutter Development. In this tutorial, we will learn how to make a flutter custom textfield along with attached Label. We will add some important mandatory and optional fields. You can add more fields as per requirement. Flutter custom text field has…