animated_path_builder 0.0.3 copy "animated_path_builder: ^0.0.3" to clipboard
animated_path_builder: ^0.0.3 copied to clipboard

An Animated Widget for create path animation.

Animated Path #

An Animated Widget for create path animation

Showcase #

Features #

  • Support list of path
  • header for customise effect
  • fps for better performance

Getting started #

import 'package:animated_path_builder/animated_path.dart';

Usage #

First you need to create a list of Path and create an AnimationController to control the animation.

Here is a minimalist example.

AnimatedPath(
  paths: (size) => createPath(size),
  animation: animation,
  color: Colors.black,
)
copied to clipboard

You can also add a header to create some effect with that animation.

AnimatedPath(
  paths: (size) => createPath(size),
  header: HeaderEffect(),
  animation: animation,
  color: Colors.black,
)
copied to clipboard

If performance is suffering due to overly complex paths, you can use fps to control this.

AnimatedPath(
  paths: (size) => createPath(size),
  animation: animation,
  color: Colors.black,
  fps: 60,
)
copied to clipboard

Check example for more.

3
likes
140
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.23 - 2025.04.07

An Animated Widget for create path animation.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on animated_path_builder