16 July 2023

Navigation with pass data in flutter

In Flutter, passing data between screens is a common requirement when building mobile applications. Flutter provides several methods to accomplish this, including using constructors, named routes, and using a state management solution like Provider or GetX. In this web page description, we’ll explore a simple example of passing data between screens using constructors. Passing data […]

Navigation with pass data in flutter Read More »

Notifications for Flutter

Notification Types Available  All notifications could be created locally or via Firebase services, with all the features. Initial Configurations  Bellow are the obligatory configurations that your app must meet to use awesome_notifications: ???? Configuring Android  1 – Is required the minimum android SDK to 21 (Android 5.0 Lollipop) and Java compiled SDK Version to 33

Notifications for Flutter Read More »

How to Get User’s Current Location Address in Flutter — Geolocator & Geocoding

In today’s mobile applications, location-based services are one of the most important and powerful features. If you look at the most popular apps, they all use the user’s location services to do certain things, such as recommending nearby places, localizing mobile advertising, contextualizing learning and research, and so on. Geolocation and reverse geocoding are the two processes for determining

How to Get User’s Current Location Address in Flutter — Geolocator & Geocoding Read More »

Flutter SQLite Tutorial

 In this tutorial, we shall learn basic SQLite operations with the help of a complete Flutter Application. About UI Following example application contains a TabBar with TabBarView for operations Insert, View, Query, Update and Delete operations that we shall perform on the car_table. In Insert Screen, we shall take car name and number of miles

Flutter SQLite Tutorial Read More »

Stripe payment gateway in Flutter

Installation  Requirements  Android This plugin requires several changes to be able to work on Android devices. Please make sure you follow all these steps: These changes are needed because the Android Stripe SDK requires the use of the AppCompat theme for their UI components and the Support Fragment Manager for the Payment Sheets If you

Stripe payment gateway in Flutter Read More »