magic_canvas 0.0.1 copy "magic_canvas: ^0.0.1" to clipboard
magic_canvas: ^0.0.1 copied to clipboard

Flutter package support draw canvas shapes.

Flutter package support draw canvas shapes pub package

Support shapes #

  1. Rectangle
  2. Circle
  3. Line
  4. Arrow
  5. Chat bubble
  6. Custom shape by extend AbstractShape

Getting started #

To use this plugin, add magic_canvas as a dependency in your pubspec.yaml file.

Usage #

I will provide specific examples later.

Board(
    children: [
        RectangleShape(
            borderColor: Colors.red,
            location: const Offset(5, 5),
            size: const Size(30, 50),
            color: Colors.orange,
        ),
        CircleShape(
            borderColor: Colors.red,
            location: const Offset(50, 5),
            size: const Size(30, 50),
            color: Colors.orange,
            text: 'Hello'
        ),
        color: Colors.grey,
        size: const Size(1280, 720),
    ],
)
5
likes
120
points
9
downloads

Publisher

verified publishermag1c.dev

Weekly Downloads

Flutter package support draw canvas shapes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on magic_canvas