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

A customizable loading indicator that rotates around an image.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('Custom Loading Indicator Example')),
        body: Center(
          child: CustomLoadingIndicator(
            image: AssetImage('assets/image.png'),
            size: 100.0,
            loaderColor: Colors.red,
            duration: Duration(seconds: 1),
          ),
        ),
      ),
    );
  }
}
1
likes
150
points
103
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable loading indicator that rotates around an image.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on custom_loading_loader