You must have came across a use case where a widget can be of bigger size than the device size. Or you wanted an image of a bigger size to fit into screen, and user can zoom-in or zoom-out to see the details of the image. Or case where you wanted to drag-drop a widget. … Continue reading Flutter InteractiveViewer
Author: AmitB
Future of SnackBars – ScaffoldMessenger
Problem with current SnackBars: To understand the need of ScaffoldMessenger, lets take an example of food ordering app. You added several items in cart, and you go on checkout screen. On checkout screen, you do the payment and click on some "Confirm Order" button, which will call some backend API to post these order details, … Continue reading Future of SnackBars – ScaffoldMessenger
Flutter – Internationalization using easy_localization package
While developing your mobile app, you do care about users of the app and to provide better user experience, you can think about providing internationalization in the app i.e. having an option to switch between languages. Because users will love to see your app in their native languages, rather than keeping it limited to English.There … Continue reading Flutter – Internationalization using easy_localization package
Flutter – Material Buttons and their Theme Update
Flutter 1.22 brings new universe of material buttons, that helps custamizing app wide theme of the buttons.
Flutter – Search using Barcode Scan
Barcodes are applied to products as a means of quick identification. They are used in retail stores as part of the purchase process, in warehouses to track inventory etc. So for apps like e-commerce, inventory management, there is a common use case to search products in product catalogue using barcode. Now these barcodes are usually … Continue reading Flutter – Search using Barcode Scan
Razorpay Payment Integration in Flutter
In this article, let we will see how to integrate Razorpay in Flutter. Thanks to the Team Razorpay for providing this easy to use package razorpay_flutter. To understand more about the payment flow with Razorpay, you can go through the official docs of Razorpay. To summarize in short : User will click on the checkout button. … Continue reading Razorpay Payment Integration in Flutter
Hello Flutter!
What is flutter? Those who are hearing this for the first time, flutter is a new mobile app development SDK for both ios and android. Java/Kotlin is used to develop native android apps and Swift/Objective C is used to develop native ios apps. But with flutter, both ios and android applications can be developed in … Continue reading Hello Flutter!