animated_loading_indicators 0.0.1
animated_loading_indicators: ^0.0.1 copied to clipboard
A collection of animated loading indicators with flutter.
🏆 Flutter Loading Indicators #
A collection of animated loading indicators with flutter.
✔️ Installing #
dependencies:
animated_loading_indicators: ^0.0.1
➕: Import #
import 'package:animated_loading_indicators/loading_indicators.dart';
💻: How To Use #
const clockLoader = ClockLoader(
frameColor: Colors.deepOrange,
minuteColor: Colors.blue,
hourColor: Colors.green,
),
const threeDots = ThreeIconsLoading(
size: 25,
icon: Icons.circle,
iconColor1: Colors.red,
iconColor2: Colors.yellow,
iconColor3: Colors.green,
duration: Duration(seconds: 1),
),
For more usecase info, please, refer to the main.dart in the example folder.
🆘 Requests #
If you have faced with any issues or you have any recommendations, please fork the project and send a pull request with your comments.
❗️ Note #
For help getting started with Flutter, view the online documentation.
For help on editing plugin code, view the documentation.