loading_indicator_animation 1.0.0+1
loading_indicator_animation: ^1.0.0+1 copied to clipboard
A Flutter package for animated loading indicators.
Loading Indicator Animation Flutter #
A collection of beautiful and customizable loading indicator animations for Flutter applications. This package provides various loading animations to enhance user experience.
Available Indicators #
Here is a preview of all the available loading indicators:
| Ring | Tailspin | Line Spinner | Squircle | Reuleaux |
|---|---|---|---|---|
| [Ring] | [Tailspin] | [Line Spinner] | [Squircle] | [Reuleaux] |
| Tail Chase | Dot Spinner | Spiral | Bouncy | Treadmill |
|---|---|---|---|---|
| [Tail Chase] | [Dot Spinner] | [Spiral] | [Bouncy] | [Treadmill] |
| Bouncy Arc | Waveform | Hatch | Hourglass | Zoomies |
|---|---|---|---|---|
| [Bouncy Arc] | [Waveform] | [Hatch] | [Hourglass] | [Zoomies] |
| Line Wobble | Infinity | Trefoil | Cardio | Helix |
|---|---|---|---|---|
| [Line Wobble] | [Infinity] | [Trefoil] | [Cardio] | [Helix] |
| Grid | Quantum | Wobble | Orbit | Chaotic Orbit |
|---|---|---|---|---|
| [Grid] | [Quantum] | [Wobble] | [Orbit] | [Chaotic Orbit] |
| Superballs | Trio | Momentum | Dot Wave |
|---|---|---|---|
| [Superballs] | [Trio] | [Momentum] | [Dot Wave] |
Screen Recording #
Installation #
Add the following dependency to your pubspec.yaml:
yaml #
dependencies: flutter: sdk: flutter loading_indicator_animation_flutter: latest_version
Usage #
import 'package:flutter/material.dart'; import 'package:loading_indicator_animation_flutter/loading_indicator_animation_flutter.dart';
void main() { runApp(MyApp()); }
class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: Text("Loading Indicators")), body: Center( child: LoadingIndicator(type: LoadingIndicatorType.ring), ), ), ); } }
Contributions #
Contributions are welcome! Feel free to open issues and submit pull requests.