Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dart HTML5 Canvas Library?

Tags:

dart

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 ?

like image 577
Shadoweb Avatar asked Jul 23 '12 07:07

Shadoweb


2 Answers

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

like image 170
John Evans Avatar answered Sep 23 '22 01:09

John Evans


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
like image 1
Alex Avatar answered Sep 23 '22 01:09

Alex