This is an example app in which the backdrop can be expanded or contracted with a swipe gesture. Swipe to Expand backdrop example Example app to demonstrate the ability to expand or contract backdrop using a swipe gesture Demo Installing Clone this repo Use “flutter run” to run the app Getting Started This project is ..
Category : Widgets
The missing location picker made in Flutter for Flutter. ⚠️ Please note: This library will NOT be affected by the deprecation of Place Picker as indicated here. ???? Remember to enable Places API, Maps SDK for Android and Maps SDK for iOS for your API key. Usage To use this plugin, add place_picker as a ..
Pie Chart This Flutter package provides a Pie Chart Widget with cool animation. ???? Installation In the dependencies: section of your pubspec.yaml, add the following line: dependencies: pie_chart: <latest version> ❔ Usage Import this class import ‘package:pie_chart/pie_chart.dart’; Usage is simple. Pie Chart is a widget and it just needs a Map<String, double> as its data ..
Search Widget This Flutter package provides a Search Widget for selecting an option from a data list. It provides the filtering of items based on the search text. ???? Installation In the dependencies: section of your pubspec.yaml, add the following line: dependencies: search_widget: <latest version> ❔ Usage Import this class import ‘package:search_widget/search_widget.dart’; Add Search Widget ..
flutter_email_sender Allows send emails from flutter using native platform functionality. In android it opens default mail app via intent. compileSdkVersion 28 is used in this plugin and it should be used in app too. In iOS MFMailComposeViewController is used to compose an email. Example final Email email = Email( body: ‘Email body’, subject: ‘Email subject’, ..
Short Description: The EasyRichText widget provides a easy way to use RichText. extended_rich_text The EasyRichText widget provides an easy way to use RichText when you want to use specific style for specific word. This widget split string into multiple TextSpan by defining a <pattern,TextStyle> Map; Getting Started Installing: dependencies: easy_rich_text: ‘^0.1.0’ Usage: String str = ..
ABC of Flutter widgets. Intended for super beginners at Flutter. Play with 35+ examples given and get familiar with various basic widgets in Flutter. Basic Widgets Examples This is aimed for complete beginners in Flutter, to get them acquainted with the various basic widgets in Flutter. Run this project Fork this project. Rename the directory ..
infinite_view_pager Flutter infinite view pager widget Installation dependencies: infinite_view_pager: ^1.0.0 Example import ‘package:infinite_view_pager/infinite_view_pager.dart’; class InfiniteViewPagerDemo extends StatefulWidget { @override _InfiniteViewPagerDemoState createState() => _InfiniteViewPagerDemoState(); } class _InfiniteViewPagerDemoState extends State<InfiniteViewPagerDemo> { int index = 0; Widget _buildPage(BuildContext context, int direction) { return Container( padding: EdgeInsets.all(100.0), child: Card( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20.0), ), elevation: 10, child: Center( child: ..
A flutter package for creating a slider button widget. Slider Button This package provides an easy implementation of a Slider Button to cancel current transaction or screen. Highly customizable iphone alike looking widget. How to use Type 1 This is a Circle type widget. You just need to define the border radius to swap between ..
drag_select_grid_view A grid that supports both dragging and tapping to select its items. Basic usage First of all, DragSelectGridView constructor is very similar to GridView.builder, so you should take your time to understand the latter before diving into this library. Once you are familiar with GridView.builder, probably the only additional piece of information you’ll need ..
A Flutter package with a selection of simple yet very customizable set of loading animations. Flutter Loading Animations A simple yet very customizable set of loading animations for Flutter projects. Installation Add the following to your pubspec.yaml file: … dependencies: … loading_animations: “^2.0.0” … Then import the file to your project: import ‘package:loading_animations/loading_animations.dart’; How to ..
Looking for Flutter Widget/Plugin source code for Barcode scanner plugin. Supports barcode scanning for Android and iOS. flutter_barcode_scanner A plugin for Flutter apps that adds barcode scanning support on both Android and iOS. Try example Just clone the repository, open the project in Android Studio/ VS Code, open pubspec.yaml and click on Packages get. Connect ..
Flutter wrapper widget for Avataaars API. avataaar_image Flutter wrapper widget for Avataaars API – a free online avatar generator for anyone to make their beautiful personal avatar easily. Getting Started Create Avataaar object: // Create avatar with default constructor Avataaar( skin: Skin.pale, style: Style.circle, top: Top.longHairCurly( accessoriesType: AccessoriesType.Round, facialHair: FacialHair.beardMagestic( facialHairColor: FacialHairColor.BlondeGolden, ), ), ); ..
Flutter list widget that allows to drag and drop items as well as define custom drag handle widget. DragList Flutter list widget that allows to drag and drop items as well as define custom drag handle widget. Getting Started Add DragList component to your widget tree: child: DragList<String>( items: [‘Tuna’, ‘Meat’, ‘Cheese’, ‘Potato’, ‘Eggs’, ‘Bread’], ..
Flutter widget allowing to receive tap callbacks together with their position on screen. positioned-tap-detector Flutter widget allowing to receive tap callbacks, together with their position on the screen. It supports onTap, onDoubleTap and onLongPress gestures. Each callback function is invoked with TapPosition object that provides global and relative touch position. To adjust maximum time allowed ..
Starter code for the Dicee project in the Complete Flutter Bootcamp Dicee ???? Our Goal The objective of this tutorial is to introduce you to the core programming concepts that will form the foundation of most of the apps you’ll build in the future. This app will teach you how to make apps with functionality ..
Flutter gallery A demo app for Flutter’s material design and cupertino widgets, as well as many other features of the Flutter SDK. Building You can follow these instructions to build the gallery app and install it onto your device. Prerequisites If you are new to Flutter, please first follow the Flutter Setup guide. Building and ..