Category : packages

pe_paytm A new Flutter package project for PayTm intergation in your Flutter Apps. #For Demo  Getting Started Follow the following Steps to integrate the paytm payment in Flutter Application. Go to Firebase console and Create a Firebase Project (e.g. payments Testing). Set up Node.js and the Firebase CLIYou’ll need a Node.js environment to write functions, ..

Read more

assets_audio_player  Play music/audio stored in assets files (simultaneously) directly from Flutter (android/ios / web). You can also use play audio files from the network using their URL try online:Ā https://flutter-assets-audio-player.web.app flutter: assets: – assets/audios/ AssetsAudioPlayer.newPlayer().open( Audio(“assets/audios/song1.mp3”), autoPlay: true, );  Import dependencies: assets_audio_player: ^1.3.8  Web support You like the package ? buy me a kofi šŸ™‚  Import ..

Read more

WebFeed A dart package for parsing RSS and Atom feed. Features  RSS  Atom  Namespaces  Media RSS  Dublin Core Installing Add this line into your pubspec.yaml Import the package into your dart code using: Example To parse string into RssFeed object use: Preview RSS Atom License WebFeed is licensed under the MIT License – see theĀ LICENSE.mdĀ file for details Download ..

Read more

circle_list A new Flutter package for Circle List. Add dependency Super simple to use If you want to add gradient background Another background CenterWidget Demo Params Download Flutter package for circle list Source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Flutter Page Transition Package This package gives you beautiful page transitions. Demo Usage It is really easy to use! You should ensure that you add the page_transition as a dependency in your flutter project. dependencies: page_transition: “^1.1.5” Than you can use it with below examples. Navigator.push(context, PageTransition(type: PageTransitionType.fade, child: DetailScreen())); Navigator.push(context, PageTransition(type: PageTransitionType.leftToRight, child: DetailScreen())); Navigator.push(context, PageTransition(type: ..

Read more

Info about flutter_styled_toast A Styled Toast Flutter package. You can highly customize toast ever. Beautify toast with a series of animations and make toast more beautiful. demo Getting Started dependencies: flutter_styled_toast: ^1.2.1 import ‘package:flutter_styled_toast/flutter_styled_toast.dart’; StyledToast( textStyle: TextStyle(fontSize: 16.0, color: Colors.white), backgroundColor: Color(0x99000000), borderRadius: BorderRadius.circular(5.0), textPadding: EdgeInsets.symmetric(horizontal: 17.0, vertical: 10.0), toastPositions: StyledToastPosition.bottom, toastAnimation: StyledToastAnimation.fade, reverseAnimation: StyledToastAnimation.fade, ..

Read more

Built Values for Dart Introduction Built Value provides: Immutable value types; EnumClass, classes that behave like enums; JSON serialization. Immutable collections are fromĀ built_collection. See theĀ API docs. Articles built_valueĀ for Immutable Object Models built_valueĀ for Serialization Building a Chat App in Dart End to End Testing in One Short Second with Dart Moving Fast with Dart Immutable Values ..

Read more

Water Drop ???????????? A simple package for adding water drops to your Widgets! ????????????????????????????????????????Blog article with a detailed explanation:https://fidev.io/water-drop???????????????????????????????????????? Why? Why not?! How? Just wrap your widget in WaterDrop and provide params: Widget build(BuildContext context) { return WaterDrop( child: _StaticCard(color: Colors.green), params: [ WaterDropParam(top: 50, height: 70, left: 100, width: 50), WaterDropParam(top: 10, height: 100, left: 280, width: 100), ..

Read more

paging A Flutter package for paginating a list view Installation Add this to your package’s pubspec.yaml file dependencies: … paging: ^latest.version.here Usage First import paging.dart import ‘package:paging/paging.dart’; Simple to use. You can pass a type <T> as a parameter to the widget, by default dynamic is assumed. There are two required parameters: pageBuilder: requires a ..

Read more

Info: package library for extended_image, extended_text and extended_text_field,provide common base class. extended_image_library package library for extended_image extended_image A powerful official extension library of image, which support placeholder(loading)/ failed state, cache network, zoom pan image, photo view, slide out page, editor(crop,rotate,flip), paint custom etc. Download Flutter Extend Image Library Source Code on GitHub https://github.com/fluttercandies/extended_image_library FlutterappworldProvides the ..

Read more

Info: Lite version of smart_select package, zero dependencies, an easy way to provide a single or multiple choice chips. You can check out his package details on Pub: https://pub.dev/packages/chips_choice chips_choice Lite version of smart_select package, zero dependencies, an easy way to provide a single or multiple choice chips. Demo Preview Download Features Select single or ..

Read more

flutter_annual_task flutter_annual_task Flutter package for displaying grid view of daily task like Github-Contributions. Example Usage Make sure to check out example project. AnnualTaskView( taskItem // List<AnnualTaskItem> ), Installation Add to pubspec.yaml: dependencies: flutter_annual_task: ^0.1.3 Then import it to your project: import ‘package:flutter_annual_task/flutter_annual_task.dart’; And finally add AnnualTaskView widget in your project. AnnualTaskView( taskItem // List<AnnualTaskItem> ), ..

Read more

animator Enables you to create stunning flutter animations, faster, efficient and with less code. Partly inspired by the amazing Animate.css package by Dan Eden. Please note, although it’s inspired by Animate.css, this still is a Flutter package, meaning it will be available for all flutter-supported platforms. Features: Combine and chain Tweens with multiple easing-curves. Less ..

Read more

pdf_viewer_jk A flutter plugin for viewing PDF files in mobile app (Android & iOS). based on https://github.com/CrossPT/flutter_plugin_pdf_viewer Installation Add pdf_viewer_jk as a dependency in your pubspec.yaml file. Android No permissions required. Uses application cache directory. iOS No permissions required. How-to: Load PDF Load pages Pre-built viewer Use the pre-built PDF Viewer Download Source Code on GitHub FlutterappworldProvides the list ..

Read more

esc_pos_bluetooth The library allows to print receipts using a Bluetooth printer. For WiFi/Ethernet printers, use esc_pos_printer library. [pub.dev page] | [Documentation] Tested Printers Here are some printers tested with this library. Please add your models you have tested to maintain and improve this library and help others to choose the right printer. Main Features Android / iOS support Simple text ..

Read more

mastodon_dart A Dart API for the Mastodon network. Work in progress. Mastodon data types Mastodon endpoints Status This package is not production ready. Contributing Create an issue, back it with a PR, and tag an active contributor. Mock Client import ‘package:mastodon_dart/mastodon_dart.dart’; main() async { final mock = MockMastodon(); /// Hit the endpoints with blank parameters mock.account(“”).then((a) ..

Read more

flutter_html Note: 1.0.0-pre.1 has been released! See theĀ Migration GuideĀ if you’d like to take advantage of all the new features of 1.0.0! Also, check out theĀ Prerelease Changelog.Ā Version 1.0.0 is currently on theĀ new-parserĀ branch. This README will be updated when 1.0.0 is merged into the master branch. A Flutter widget for rendering static html tags as Flutter widgets. ..

Read more

Boilerplate Project A boilerplate project created in flutter using MobX and Provider. Getting Started The Boilerplate contains the minimal implementation required to create a new library or project. The repository code is preloaded with some basic components like basic app architecture, app theme, constants and required dependencies to create a new project. By using boiler ..

Read more

Simple Animations Simple Animations is a package for Flutter to boost your animation productivity by simplifying the way to create animations. Simple Animations is a powerful package to create beautiful custom animations in no time.  fully tested  well documented  enterprise-ready  Highlights Easily create custom animations in stateless widgets Animate multiple properties at once Create staggered animations within seconds Simplified working with AnimationController instances ..

Read more

Table Calendar Highly customizable, feature-packed Flutter Calendar with gestures, animations, and multiple formats. Table Calendar with custom styles Table Calendar with Builders Features Extensive, yet easy to use API Custom Builders for truly flexible UI Complete programmatic control with CalendarController Dynamic events Interface for holidays Locale support Vertical autosizing Beautiful animations Gesture handling Multiple Calendar formats Multiple ..

Read more

states_rebuilder states_rebuilder is a flutter state management solution that allows for clear and sharp separation of concern between the user interface (UI) logic and the business logic. The separation is clear and sharp to the point that the business logic is written with pure, vanilla, plain old dart classes without extending any external library-specific classes and ..

Read more

sliding_up_panel A draggable Flutter widget that makes implementing a SlidingUpPanel much easier! Based on the Material Design bottom sheet component, this widget works on both Android & iOS. Installing Add the following to your pubspec.yaml file: dependencies: sliding_up_panel: ^1.0.0 Note that v1.0.0 introduced some breaking changes outlined below. Simple Usage There are two ways which the SlidingUpPanel can easily be added to ..

Read more

Info: A complete, ready to use, Neumorphic UI kit for Flutter,Ā ????ļøĀ dark mode compatible. flutter_neumorphic A complete, ready to use, Neumorphic ui kit for Flutter āš™ļø Installation https://pub.dev/packages/flutter_neumorphic dependencies: flutter_neumorphic: ^1.0.0+3 The in your .dart files import ‘package:flutter_neumorphic/flutter_neumorphic.dart’; What’s neumorphic Material Cards A Modern / Material (upgraded) card usually is a surface floating on top of our ..

Read more

A predictable state management library that helps implement theĀ BLoC design pattern. Overview The goal of this library is to make it easy to separate presentation from business logic, facilitating testability and reusability. Documentation Official Documentation Bloc Package Flutter Bloc Package Angular Bloc Package Migration Upgrade from v0.x to v2.x Dart CounterĀ – an example of how to create aĀ CounterBlocĀ (pure ..

Read more

Circular Bottom Navigation (or maybe a tab bar). This is implementation of an artwork inĀ Uplabs Let’s get started 1 – Depend on it Add this to your package’s pubspec.yaml file: dependencies: circular_bottom_navigation: ^1.0.1 2 – Install it install packages from the command line: flutter packages get 3 – Import it Now in your Dart code, ..

Read more

Info: Flutter plugin that allows you to display multi-image picker on iOS and Android.Ā ???????????? FlutterĀ plugin that allows you to display multi-image picker on iOS and Android. Key Features • Documentation • FAQ • Credits • Related • License Key Features Pick multiple images Native performance Photos sorted by albums Take a picture option in the grid view Restrict the maximum count of images the user ..

Read more

Fast, Enjoyable & Secure NoSQL Database Hive is a lightweight and blazing fast key-value database written in pure Dart. Inspired byĀ Bitcask. Documentation & SamplesĀ ???? Features ????Ā Cross platform: mobile, desktop, browser ⚔ Great performance (seeĀ benchmark) ā¤ļøĀ Simple, powerful, & intuitive API ????Ā Strong encryption built in ????Ā NOĀ native dependencies ????Ā Batteries included Getting Started Check out theĀ Quick StartĀ documentation to get ..

Read more

collection_ext A set of extension methods forĀ DartĀ collections, designed for the purpose of making it easier to write concise, functional-programming-styledĀ DartĀ code. Working on an Iterable for example, with collection_ext, we can write: iterable.forEachIndexed((i, x) => /* use index i & element x */) instead of: var i = 0; for (var x in iterable) { // use index i & ..

Read more

Philippines This provides a complete list of Philippine towns, cities, provinces, and regions. References: http://en.wikipedia.org/wiki/Regions_of_the_Philippines http://en.wikipedia.org/wiki/Provinces_of_the_Philippines http://en.wikipedia.org/wiki/List_of_cities_and_municipalities_in_the_Philippines Installation: Usage: Notes If the data is outdated, feel free to contribute. Contributions Feel free to contribute! Just create a Pull Request šŸ™‚ Download Philippines Source Code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection ..

Read more

empty_Widget FilterList is a flutter plugin that is designed to provide ease in filter data from a list of strings. Getting Started 1. Add library to your pubspec.yaml dependencies: filter_list: ^0.0.1 2. Import library in dart file import ‘import ‘package:filter_list/filter_list.dart’;’; 3. How to use FilterList Create a list of Strings List<String> countList = [ “One”, ..

Read more

AĀ DartĀ implementation ofĀ Sass.Ā Sass makes CSS fun again. Using Dart Sass From Chocolatey or Scoop (Windows) From Homebrew (OS X) Standalone From npm From Pub From Source JavaScript API Why Dart? Compatibility Policy Browser Compatibility Node.js Compatibility Behavioral Differences from Ruby Sass Using Dart Sass There are a few different ways to install and run Dart Sass, ..

Read more

The brightest, hippest, coolest router for Flutter. Features Simple route navigation Function handlers (map to a function instead of a route) Wildcard parameter matching Querystring parameter parsing Common transitions built-in Simple custom transition creation Version Compatability See CHANGELOG for all breaking (and non-breaking) changes. Getting started You should ensure that you add the router as ..

Read more

Emojis Ā Emoji for DartĀ Ā Over 3300 EmojisThisĀ Ā contain allĀ Ā Unicode 13 EmojisĀ (2ļø0ļø2ļø0ļø)  Usage  Import import ‘package:emojis/emojis.dart’; // to use Emoji collection import ‘package:emojis/emoji.dart’; // to use Emoji utilities  Use print(‘I ${Emojis.greenHeart} ${Emojis.directHit}’); // I šŸ’š šŸŽÆ Emoji smile = Emoji.byName(‘Grinning Face’); // get a emoji by its name print(‘Emoji name : ${smile.name}’); // Emoji name is Grinning Face ..

Read more

Flutter Map plugin for ArcGIS Esri Currently support feature layer and feature cluster We are working on more features A Dart implementation of Esri Leaflet for Flutter apps. This is a plugin for flutter_map package Feature layer’s cluster Inspired by flutter_map_marker_cluster package Usage Add flutter_map, dio and flutter_map_arcgis to your pubspec: dependencies: flutter_map: any flutter_map_arcgis: any # or the ..

Read more

Spider A small dart library to generate Assets dart code from assets folder. It generates dart class with static const variables in it which can be used to reference the assets safely anywhere in the flutter app. Example Before Widget build(BuildContext context) { return Image(image: AssetImage(‘assets/background.png’)); } After Widget build(BuildContext context) { return Image(image: AssetImage(Assets.background)); ..

Read more

This package exposes a StringScanner type that makes it easy to parse a string using a series of Patterns. For example: import ‘dart:math’; import ‘package:string_scanner/string_scanner.dart’; num parseNumber(String source) { // Scan a number (“1”, “1.5”, “-3”). var scanner = StringScanner(source); // [Scanner.scan] tries to consume a [Pattern] and returns whether or not it // succeeded. It will move ..

Read more

???? flame A minimalist Flutter game engine. Any help is appreciated! Comment, suggestions, issues, PR’s! Give us a star to help! Help We have a Flame help channel on Fireslime’s Discord, join it here. Also we now have a FAQ, so please search your questions there first. Goals The goal of this project is to ..

Read more

AudioPlayers A Flutter plugin to play multiple simultaneously audio files, works for Android, iOS and macOS. Install This was orginally forked from rxlabz’s audioplayer, but the name was changed to audioplayers (mind the ‘s’); so, to add the dependency: dependencies: audioplayers: ^0.14.0 Discord channel We have created a channel for audioplayers help on Fireslime’s discord, ..

Read more