widget_circular_animator 0.1.3 copy "widget_circular_animator: ^0.1.3" to clipboard
widget_circular_animator: ^0.1.3 copied to clipboard

outdated

A pre-built Flutter circular animator, can suit your new profile view or your any other widgets.

widget_circular_animator #

A new Flutter widget animator inspired by this lottie animation. [https://lottiefiles.com/3619-profile]

pub

person clock person

Features #

Dynamic Animation

The widget helps to animate any widget you have such as a profile or an image or anything else with a simple modren animatins to help you build a better UI in your next app.

Configurable Widget

you can costumize anything in this widget, inner and outer colors, icons size and animation duration to suits your applications use-case.

Installing #

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

dependencies:
  widget_circular_animator: _latest_version

Now in your Dart code, you can use:

import 'package:widget_circular_animator/widget_circular_animator.dart';

Details see pub.dev.

Usage #

The widget_circular_animator package itself is very simple to use, just like a common statefullWidget:


        Center(
          child: WidgetCircularAnimator(
            size: 200,
            innerIconsSize: 3,
            outerIconsSize: 3,
            innerColor: Colors.deepOrange,
            outerColor: Colors.deepPurple,
            innerAnimationSeconds: 30,
            outerAnimationSeconds: 30,
            child: Container(
              decoration: BoxDecoration(
                  shape: BoxShape.circle, color: Colors.grey[200]),
              child: Icon(
                Icons.person_outline,
                color: Colors.deepOrange[200],
                size: 60,
              ),
            ),
        )),

See the full example circular_animator_example.

Widget Properties #

child

Widget

( required )

widget_circular_animator is mainly configured by passing a widget value to be the widget that we will surround with our animations.

innerIconsSize

double

change the icons size for the inner circle

outerIconsSize

double

change the icons size for the outer circle

innerColor

Color

change the inner circle stroke color

outerColor

Color

change the outer circle stroke color

innerAnimationSeconds

int

change the inter circle animation duration

outerAnimationSeconds

int

change the outer circle animation duration

size

double

The whole widget width and height.

Blog #

widget_circular_animator_medium


If you have any suggestions or requests, please open an issue.

172
likes
0
pub points
88%
popularity

Publisher

verified publisherezaldeensahb.link

A pre-built Flutter circular animator, can suit your new profile view or your any other widgets.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on widget_circular_animator