ARTICLES
Introduction to Realm for Dart and Flutter
Ahmed Taha ElElemy explains the benefits of using Realm, a fast and efficient database solution, for Dart and Flutter projects. He provides an example code snippet and case study to demonstrate how Realm can be used to store and query structured data in real-time and provide real-time updates to news app users' saved articles. He concludes that Realm is perfect for building fast and responsive apps with its simple API and real-time updates.
Reduce your server cost with Riverpod
In this article, Rei explains how Riverpod can be used for caching and decreasing API requests, as well as the lifecycle of a provider. He also provides an example of how to use ref.cacheFor()
to achieve a caching mechanism.
Flutter’s Avatar — CircleAvatar Widget (Part 1)
DevTechie's article explains how to use the CircleAvatar
widget in Flutter to create circular shaped images, such as profile pictures or email lists. It then goes on to describe various other methods of creating circular images and finally provides a solution with the built-in Flutter widget.
Unlocking the Secrets: How to Display All Applications with Access to Specific Permissions in Flutter
Muhamad Zulfa Assyfa has provided detailed instructions on how to access information about other installed applications on a device using Flutter, Platform Channels, and the installed_apps
package. He explains the process of creating a new flutter project, adding the installed_apps
package to the pubspec.yaml
file, and using MethodChannel to create a channel to communicate with the flutter side of the code. The result is an app that displays a list of all installed apps on an Android device along with their name, package name, and permission used by the app.
Effortless Routing & Deeplink in Flutter Using go_router
Dwi Randy Herdinanto has written an article that explains how to set up and use deep linking in a Flutter app. The article covers how to create two pages, how to navigate between them using the go_router
library, and how to parse parameters from a deep link URL. Additionally, it covers how to handle navigation when the app is already running.
VIDEOS
Top 5 Flutter App Development Companies in Dubai
Aaliya Saleem has outlined the steps to follow when hiring a Flutter app development company in Dubai, UAE.
Flutter Forward #AskFlutter
by Flutter
A live Q&A from Flutter Forward! Watch more: Watch all the sessions → https://goo.gle/FlutterForwardYT Subscribe to Flutter ...
Flutter Infinite Scrolling Pagination for ListView
Create an Infinite Scrolling ListView with pagination in Flutter. The Infinite Loading ListView uses HTTP GET to fetch and load ...
Flutter RawAutoComplete Widget
by Flutter Mapp
This Tutorial will show you how to use the RawAutoComplete with flutter. To learn more about every flutter widgets, you can check ...
Build ChatGPT App in Flutter using OpenAI API - Full Course
This course covers how to integrate the Rest API in a Flutter application. The course mostly focuses on REST API integration in ...
DISCUSSIONS
r/FlutterDev
Payment integrations possibilities
Hello dear Flutter colleagues,I need to integrate payment though cards (VISA,MASTER) in my flutter app. I would like to do that with a Custom UI on Flutter side.What's the best approach available in the moment ?I have tried testing something with Stripe, however, the stripe package is crashing my app.Is it possible/feasible to handle all the integration with the gateway though the REST API which my Flutter app consumes ?For e.gFlutter app -> Java REST API (handle payments)Thank you
Q&A
Flutter : how to make container height wrap around its content
I am making alert notification and I want the container to be wrapped around it content. Was not able to give left border to the rounded container to had to make another container that will be ...
Call super method of super class from child class
I have an abstract class A: abstract class A { Future<String> firstMethod(); } and I implemented this abstract class: class Aimp implements A { @override Future<String> ...