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

A minimal animated pulsing dots loader for Flutter. Lightweight loading indicator with theme-aware color, custom color, and size support.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const DemoPage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      backgroundColor: Colors.white,
      body: Center(
        child: PulsingDotsLoader(size: 40,color: Colors.blue,),
      ),
    );
  }
}
1
likes
160
points
131
downloads
screenshot

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A minimal animated pulsing dots loader for Flutter. Lightweight loading indicator with theme-aware color, custom color, and size support.

Homepage

Topics

#loading #loader #animation #ui #widget

License

MIT (license)

Dependencies

flutter

More

Packages that depend on pulsing_dots_loader