A collection of (mostly) general libraries to make working with Dart more productive.
Starting by porting bits of the PL javascript library and Google's Closure javascript library to enable some interesting scenarios.
- chrome.dart - Dart interop with chrome.* APIs for Chrome Packaged Apps
- Pop, Pop, Win! - Minesweeper with balloons
- qr.dart - Generate QR codes
- vote.dart - Simulate, run, and calculate elections with different election methods
- Dart Widgets - Reusable Web Components
The Dart Bag-of-Tricks ( BOT ) is hosted on pub.dartlang.org. Add the BOT package to your pubspec.yaml
file, selecting a version range that works with your version of the SDK. Always check the BOT page on pub to find the latest release.
See the changelog to find the version that works best for you.
If you'd like to track bleeding edge developments, you can reference the the GitHub repository directly:
dependencies:
bot:
git: https://github.com/kevmoo/bot.dart.git
- We follow Semantic Versioning.
- We are not planning a V1 for BOT until Dart releases V1.
- In the mean time, the version will remain
0.Y.Z
. - Changes to the minor version - Y - will indicate breaking changes.
- Changes to the patch version - Z - indicate non-breaking changes.
- In the mean time, the version will remain
- We're going to try to keep BOT in line with the latest integration build of the Dart SDK and Editor.
- At this point, each SDK release tends to introduce breaking changes, which usually require breaking changes in BOT.
- Keep an eye on the changelog to see how BOT aligns with each SDK release.
- No dependencies on 3rd-party libraries.
- Usable for browser-based projects and non-browser projects.
- A general model for supporting extensible, runtime-defined events and properties on supported objects.
- This functionality is inspired by the Dependency Object/Property model in WPF/Silverlight.
Array2d
Grouping
of collectionsReadOnlyCollection
RgbColor
,HslColor
with associated conversions back and forthRgbColor
supports to/from hex
- Easily raise and subscribe to events with custom, type-safe event objects.
- Mostly classes related to 2D geometry and graphicsgeometry-related classes
Coordinate
,Box
,Size
,Vector
,AffineTransfrom
FutureValue
: an abstract model for async conversions viaFuture<T>
SendPortValue
: an implementation ofFutureValue
using isolates.
- Kevin Moore (+Kevin Moore, @kevmoo)
- Andreas Köberle (@eskimobloood)
- You? File bugs. Fork and Fix bugs. Let's build this community.