animated_loader 0.1.4 copy "animated_loader: ^0.1.4" to clipboard
animated_loader: ^0.1.4 copied to clipboard

A highly customizable Flutter loading indicator supporting determinate/indeterminate modes and six built-in animation styles.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:animated_loader/animated_loader.dart';

void main() => runApp(const DemoApp());

class DemoApp extends StatelessWidget {
  const DemoApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Animated Loader Demo')),
        body: Center(
            child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            AnimatedLoader(
              loaderType: LoaderType.ringGradient,
            ),
            SizedBox(
              height: 20,
            ),
            AnimatedLoader(loaderType: LoaderType.pulse),
            SizedBox(
              height: 20,
            ),
            AnimatedLoader(loaderType: LoaderType.bar),
            SizedBox(
              height: 20,
            ),
            AnimatedLoader(loaderType: LoaderType.bouncingDots),
            SizedBox(
              height: 20,
            ),
            AnimatedLoader(loaderType: LoaderType.expandingCircle),
            SizedBox(
              height: 20,
            ),
            AnimatedLoader(
              progress: 0.7,
            ),
          ],
        )),
      ),
    );
  }
}
1
likes
160
points
81
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A highly customizable Flutter loading indicator supporting determinate/indeterminate modes and six built-in animation styles.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on animated_loader