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

An Open Source Flutter package containing a variety of animated loaders purely implemented in Dart. These Loaders are customizable to a certain extent.

example/lib/main.dart

import 'package:flutter/material.dart';
// Package Import Statement
import 'package:fc_loaders/fc_loaders.dart';
void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Row(
          mainAxisAlignment: MainAxisAlignment.spaceEvenly,
          children: const <Widget> [
            FCBallBounce(),
            FCBallBounce(
              loaderBallColor: Colors.amber, 
              duration: Duration(milliseconds: 100)
            )
          ],
        )
      ),
    );
  }
}
4
likes
130
pub points
36%
popularity

Publisher

unverified uploader

An Open Source Flutter package containing a variety of animated loaders purely implemented in Dart. These Loaders are customizable to a certain extent.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on fc_loaders