Category : packages

A mixture between dependency injection (DI) and state management, built with widgets for widgets. It purposefully uses widgets for DI/state management instead of dart-only classes like Stream. The reason is, widgets are very simple yet robust and scalable. By using widgets for state management, provider can guarantee: maintainability, through a forced uni-directional data-flow testability/composability, since ..

Read more

Aqueduct is a modern Dart HTTP server framework. The framework is composed of libraries for handling and routing HTTP requests, object-relational mapping (ORM), authentication and authorization (OAuth 2.0 provider) and documentation (OpenAPI). These libraries are used to build scalable REST APIs that run on the Dart VM. If this is your first time viewing Aqueduct, ..

Read more

Flutter Modular Info: What is Flutter Modular? When a project is getting bigger and more complex, we unfortunately end up joining a lot of archives in just one, it makes harder the code maintenance and reusability too. The Modular give us a bunch of adapted solutions for Flutter, such a dependency injection, routes controller and ..

Read more

i18n_extension Non-boilerplate Translation and Internationalization (i18n) for Flutter Start with a widget with some text in it: Text(“Hello, how are you?”) Translate it simply by adding .i18n to the string: Text(“Hello, how are you?”.i18n) If the current locale is ‘pt_BR’, then the text in the screen will be “Olá, como vai você?”, the Portuguese translation ..

Read more

import ‘package:flutter/material.dart’; import ‘dart:math’ as math; void main() => runApp(TwitterFab()); class TwitterFab extends StatefulWidget { @override _TwitterFabState createState() => _TwitterFabState(); } class _TwitterFabState extends State<TwitterFab> with SingleTickerProviderStateMixin { TabController controller; @override void initState() { super.initState(); controller = TabController(length: 2, vsync: this); controller.addListener(() { setState(() {}); }); } @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: ..

Read more

Allows user pick a document. Picked document is copied to app temporary directory. Optionally allows pick document with specific extension only. flutter_document_picker Allows user pick a document. Picked document is copied to app temporary directory. Optionally allows pick document with specific extension only. When file is picked its extension is checked using allowedFileExtensions parameter. Then ..

Read more

firebase.dart Firebase dart common interface and implementation for Browser, VM, node, and flutter Firebase Initialization Usage in browser import ‘package:tekartik_firebase_browser/firebase_browser.dart’; void main() { var firebase = firebaseNode; // … } Usage on node import ‘package:tekartik_firebase_node/firebase_node.dart’; void main() { var firebase = firebaseNode; // … } Usage on flutter dependencies: tekartik_firebase_flutter: git: url: git://github.com/tekartik/firebase.dart path: firebase_flutter ..

Read more

sqflite SQLite plugin for Flutter. Supports iOS, Android and MacOS. Support transactions and batches Automatic version management during open Helpers for insert/query/update/delete queries DB operation executed in a background thread on iOS and Android Getting Started In your flutter project add the dependency: For help getting started with Flutter, view the online documentation. Usage example Import sqflite.dart Opening ..

Read more

giphy_client A Giphy API Client for Dart compatible with all platforms Usage First, register an app at the Giphy Developers Portal. Then, follow the instructions below: Features and bugs Please file feature requests and bugs at the issue tracker. Get more details and Sorce Code of giphy client on Pub.Dev FlutterappworldProvides the list of the opensource Flutter ..

Read more

dio A powerful Http client for Dart, which supports Interceptors, Global configuration, FormData, Request Cancellation, File downloading, Timeout, etc. Get started Add dependency dependencies: dio: 3.x #latest version In order to support Flutter Web, v3.x was heavily refactored, so it was not compatible with version 3.x See here for a detailed list of updates. Super ..

Read more