Shadoweb
Shadoweb

Reputation: 6306

Dart HTML5 Canvas Library?

I wanted to know if there were a Canvas external library for DART like Fabric.js ? If it doesn't exist is there a project to make one ? Cause I'm thinking of starting this project, but I would prefer joining a existing project on GIT. Or maybe there is things integrated in DART that I don't know ?

Upvotes: 8

Views: 2883

Answers (2)

John Evans
John Evans

Reputation: 7383

I've not worked with Fabric.js, but after taking a look at the website, I'd point you to the projects listed below. Neither project is exactly what you are looking for, but should give you a starting point.

2D (Flash object model) - The project changed to StageXL https://github.com/bp74/StageXL

WebGL https://github.com/johnmccutchan/spectre

Upvotes: 9

Alex
Alex

Reputation: 8483

I don't know of any serious Canvas abstraction libs for Dart but maybe these two projects could provide a good inspiration foundation to create one.

  1. Drag & Draw approach
  2. Animation approach

Upvotes: 1

Related Questions