A simple library for applying the Humble Object Pattern in order to create clean, testable widgets. Features This package might be helpful to you if: a high level of test coverage is required you apply test driven development to app development you find it difficult to separate UI logic from appearance the widgets you create ..
Category : wrapper
A simple, interactive and customizable on-tap bounce animation that can be wrapped on any widgets that you like. You can create custom bouncing animation similarly to apps like Spotify and App Store. Package similar to flutter_bounce and bouncing_widget. Advantages: Truly simple and efficient. Customizable bouncing animation using curve, scaleFactor and duration. Options to control onTap, onTapUp, onTapDown and onTapCancel. Enable and disable onTap option. Not sticky when scrolling. Does not trigger multiple onTap events ..
A MangaDex API wrapper for Dart Usage A simple usage example: import ‘package:mangadex_api/mangadex_api.dart’; main() { var client = MDClient(); client.getChapter(‘5e8bc984-5f3f-4fb1-b6ee-cf7f3812b112’).then((chapter) { print(chapter!.title); }); client.getMangaInfo(‘a96676e5-8ae2-425e-b549-7f15dd34a6d8’, appendChapters: true, translatedLang: [‘cs’]).then((m) { print(m!.title[‘en’]); }); } Currently if you login, only requests where authentication is required will be done with your token, unless you set the useLogin parameter in a function as true. Captcha If ..
SMHI Open Data for Dart A Dart package for usage of the Swedish Meteorological and Hydrological Institute’s Open Data API. The API allows you to get the weather and other meterological data like air temperature & pressure. At the time of writing this, the Meteorological Forecasts API is available in the following countries: Sweden Norway Finland ..
Ably Flutter Plugin A Flutter plugin wrapping the ably-cocoa (iOS) and ably-java (Android) client library SDKs for Ably, the platform that powers synchronized digital experiences in realtime. Ably provides the best infrastructure and APIs to power realtime experiences at scale, delivering billions of realtime messages everyday to millions of end users. We handle the complexity of realtime messaging so you can focus ..
flutter_scroll_to_top A wrapper to show a scroll to top prompt to the user on scrollable widgets. Installing Add the following dependency to your pubspec.yaml file: dependencies: flutter_scroll_to_top: ^1.1.0 Import the package import ‘package:flutter_scroll_to_top/flutter_scroll_to_top.dart’; ScrollWrapper Just wrap the scrollable widget you want to show the scroll to top prompt over with a ScrollWrapper, and supply the ScrollController of the scrollable widget ..
FlAppwrite Account Kit A Flutter wrapper for Appwrite’s Accounts service, makes it easy to use manage authentication and account features. Under development. Not ready for production. Help get ready for production. Getting Started This is really very easy to use Add dependency from git (Will only publish to pub if enough people are interested to ..
APS Navigator – App Pagination System This library is just a wrapper around Navigator 2.0 and Router/Pages API that tries to make their use easier: Basic feature set What we’ve tried to achieve: Simple API Easy setup Minimal amount of “new classes types” to learn: No need to extend(or implement) anything Web support (check the ..
Unofficial wrapper for using Rapid7 insightOps logs (former LogEntries) with Dart. This package is using logging package to do the actual logging, and implements a handler to post the message to insightOps. Setting up Set up a new log by following the instructions, copy a URL that you will use to send your log data to. Usage A ..