stacked_rotating_loader 0.0.1 copy "stacked_rotating_loader: ^0.0.1" to clipboard
stacked_rotating_loader: ^0.0.1 copied to clipboard

A customizable Flutter loader that stacks and rotates PNG frames in alternating directions for a smooth, hypnotic animation.

stacked_rotating_loader #

A customizable and lightweight Flutter loading indicator that stacks multiple PNG frames and rotates them in alternating directions for a smooth, hypnotic loading animation.

✨ Features #

  • Stack multiple image frames into a single animated loader.
  • Alternate rotation directions for a dynamic effect.
  • Fully customizable size and speed.
  • Works with any set of PNG or ImageProvider assets.
  • No external dependencies — pure Flutter animation.

Preview #

screen-20250813-010232-ezgif com-video-to-gif-converter

📦 Installation #

Add to your pubspec.yaml:

dependencies:
  stacked_rotating_loader: ^0.0.1
## Usage

To use the `StackedRotatingLoader` widget in your Flutter app, simply include it inside your widget tree. Here’s an example of how to add it to a basic `HomePage`:

```dart
import 'package:flutter/material.dart';
import 'path_to_stacked_rotating_loader.dart'; // Import your custom loader widget

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Loading Indicator'),
      ),
      body: SafeArea(
        child: Center(
          child: StackedRotatingLoader(),
        ),
      ),
    );
  }
}



3
likes
160
points
11
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter loader that stacks and rotates PNG frames in alternating directions for a smooth, hypnotic animation.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on stacked_rotating_loader