zerker 1.2.5 copy "zerker: ^1.2.5" to clipboard
zerker: ^1.2.5 copied to clipboard

outdated

Zerker is a flexible and lightweight flutter canvas graphic animation library.

Zerker #

What is Zerker #

Zerker is a flexible and lightweight flutter canvas graphic animation library.

With Zerker, you can create a lot of seemingly cumbersome animation effects, such as animated animations, pop-up animations, scene transitions, icon effects, and more.

At the same time, you can create a lot of simple games with Zerker. Zerker contains elements such as sprites, scrolling backgrounds, and atlases, making it easy to create game worlds with them.

[An image]

CODE:

Altas fire = await ZKAssets.loadAltas(
  key: "fire", 
  json: "assets/a.json", 
  image: "assets/fire.png"
);

Altas ball = await ZKAssets.loadImage(
  key: "ball",  
  image: "assets/ball.png"
);

ZKAssets.loadAssets(
  urls: ["a.png", "b.png", ...],
  baseUrl: "assets/",
  onLoad: (){
    ...
  }
);

[An image]


Install #

Use this package as a library #

1. Depend on it

Add this to your package's pubspec.yaml file:

dependencies:
  zerker: ^1.0.1

2. Install it

You can install packages from the command line: with Flutter:

$ flutter pub get

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

3. Import it

Now in your Dart code, you can use:

import 'package:zerker/zerker.dart';
92
likes
0
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Zerker is a flexible and lightweight flutter canvas graphic animation library.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter, uuid

More

Packages that depend on zerker