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

outdated

A Flutter plugin to show animated progress bar with customization styles.

Animated Progress Bar #

A Flutter plugin to show animated progress bar with customization styles.

[]

Getting Started #

In order to use this package, do import

import 'package:animated_progress_bar/animated_progress_bar.dart';

You can simply use this plugin as follows:

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

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Animated ProgressBar Example'),
        ),
        body: const SizedBox(
                      height: 150,
                      width: 150,
                      child: AnimatedProgressBar(
                        stroke: 7,
                        color: Colors.cyan,
                        style: PaintingStyle.stroke,
                      ))
      ),
    );
  }
}

License #

MIT

About #

Built with <3
by Mostafa Efafi

2
likes
0
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin to show animated progress bar with customization styles.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on animated_progress_bar