Category

Flutter
Flutter Wifi: This Flutter Wifi  plugin allows Flutter apps to get wifi ssid and its  list, connect wifi with ssid and password. After Connecting Wifi we can exchange data over the network like sending files, sms  message, using whatsapp etc. This plugin tested on Android and works better on it. Use the below code to...
Read More
Flutter Path Provider: The Flutter plugin used for finding commonly used locations on the filesystem of the device. It Supports for both  iOS and Android. Sample  Example code: Directory tempDir = await getTemporaryDirectory(); String tempPath = tempDir.path; Directory appDocDir = await getApplicationDocumentsDirectory(); String appDocPath = appDocDir.path;   Using Path Provider In Flutter: Adding the dependency...
Read More
Flutter Video Player: A Flutter plugin used for iOS and Android for playing back video on a Widget surface. Adding Dependency Packages to the Flutter: To use Video Player in Flutter we need to add its dependency package into the pubspec.yaml file . Use the below code to add package dependencies: dependencies: video_player: ^0.7.2 Installing ...
Read More
Flutter URL Launcher: This plugin used for launching a url in Android and IOS devices. Supported URL schemes: The URL Launcher plugin has a   Launch method and it takes a string as argument containing a URL. The URL can be formatted using a number of different URL schemes. It  suppors different  URL schemes based...
Read More
Flutter Firebase Cloud Messaging : With this plugin, your Flutter app can receive and process push notifications as well as data messages on Android and iOS. Firebase Cloud Messaging: Firebase Cloud Messaging (FCM) is a cross-platform messaging solution that is used to reliably deliver messages at no cost. Using FCM, We can notify a user app...
Read More
Sticky Header: Creating Sticky Header In Flutter: Create and  place sticky headers on scrollable content that will stick to the top of the container when the content is scrolled. We can use  StickyHeader or StickyHeaderBuilder inside any scrollable content, For example: ListView, GridView, CustomScrollView, SingleChildScrollView or similar type of widget which will be scrollable.   Using Sticky Header In Flutter: Adding Dependency Packages...
Read More
Flutter Swiper: The Flutter newest feature The best swiper for flutter , with multiple layouts, infinite loop. Compatible with Android & iOS. Features: Layout for pagination. PageTransformer   just set a transformer to Swiper, it returns a widget that has been transformed. Constructor: Basic: Parameter Default Description scrollDirection Axis.horizontal If Axis.horizontal, the scroll view’s children are arranged horizontally in...
Read More
Bluetooth in Flutter: FlutterBlue is a bluetooth plugin for  Fflutter, This is a  new mobile SDK to help developers build modern apps for iOS and Android to use bluetooth functionality. FlutterBlue used for Cross-Platform Bluetooth : FlutterBlue offer the more for  both platforms (iOS and Android). Using the FlutterBlue instance, we  can scan for and...
Read More
Flutter Camera: A Flutter camera  plugin for iOS and Android allowing access to the device cameras. the flutter  Camera Display live camera preview in a widget. It  is used to Snapshots can be captured and saved to a file. Adding Dependency package: To use camera in Flutter we have to add its dependency package into...
Read More
Flutter Date & Time Picker Example: Date/Time picker FormFields: Here we are using Two Flutter widgets that wrap a TextFormField and integrates the date and/or time picker dialogs. DateTimePickerFormField: For using the date picker and optionally the time picker too. It shows DateTime values. This widget is used to pick the date along with the time...
Read More
1 7 8 9 10

Categories