custom_loading_indicator 0.0.1+2 copy "custom_loading_indicator: ^0.0.1+2" to clipboard
custom_loading_indicator: ^0.0.1+2 copied to clipboard

outdated

A Flutter package to customise the loading indicator for your organisation.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return Container(
        child: CustomCircularLoadingIndicator(
      imagePath: 'images/tooth.png',
    )
        //relativeSize is an optional argument, by default it is set to 2 ( 1 <= relativeSize <= 6 )
        //curveName is an optional argument - an object of the Curves class in Flutter
        //relativeSpeed is an optional argument, by default it is set to 2 ( 1 <= relativeSpeed <= 6)
        );
  }
}
7
likes
0
pub points
1%
popularity

Publisher

unverified uploader

A Flutter package to customise the loading indicator for your organisation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on custom_loading_indicator