animated_loading_ui 0.0.2 copy "animated_loading_ui: ^0.0.2" to clipboard
animated_loading_ui: ^0.0.2 copied to clipboard

Flutter loading animation package.

animated_loading_ui #

A simple flutter loading ui package with dots and image.

Features #

✅ Multiple loading animations ✅ Easy to customize (color, size, shadows) ✅ Lightweight and fast

Preview #

Getting started #

Add this in your project dependencies: 'animated_loading_ui: ^0.0.2'

Usage #

This is Simple way to use, see example to know more.

import 'package:animated_loading_ui/animated_loading_ui.dart';

class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: AnimatedUiLoader.dotsMovingRL(
              dotsShadows: [
                BoxShadow(
                  color: Colors.lightBlueAccent,
                  spreadRadius: 3,
                  blurRadius: 2.0,
                ),
              ],
        ),
    );
  }
}
copied to clipboard

Another one.

import 'package:animated_loading_ui/animated_loading_ui.dart';
import 'package:animated_loading_ui/res/icon_type.dart';

class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: AnimatedUiLoader.rotate(image: IconImage.fan,),
    );
  }
}
copied to clipboard

There is 3 type of image you can use.

image: IconImage.fan, IconImage.wheel, IconImage.gear

Issues & Feedback #

Found a bug? Have a feature request?
Please open an issue on our GitHub tracker:
📌 Open an Issue

0
likes
130
points
126
downloads

Publisher

unverified uploader

Weekly Downloads

2024.10.27 - 2025.09.21

Flutter loading animation package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on animated_loading_ui