https://github.com/santoshkafle/animated_loading_ui
A simple flutter loading ui package with dots and image.
https://github.com/santoshkafle/animated_loading_ui
dart flutter flutter-loa flutter-package flutter-project
Last synced: 3 months ago
JSON representation
A simple flutter loading ui package with dots and image.
- Host: GitHub
- URL: https://github.com/santoshkafle/animated_loading_ui
- Owner: santoshkafle
- License: mit
- Created: 2025-08-14T11:16:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-01T10:52:02.000Z (10 months ago)
- Last Synced: 2025-09-01T12:40:39.022Z (10 months ago)
- Topics: dart, flutter, flutter-loa, flutter-package, flutter-project
- Language: Dart
- Homepage: https://pub.dev/packages/animated_loading_ui
- Size: 5.04 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.
```dart
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,
),
],
),
);
}
}
```
Another one.
```dart
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,),
);
}
}
```
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](https://github.com/santoshkafle/animated_loading_ui/issues)