custom_shape_progress_indicator 0.0.3 copy "custom_shape_progress_indicator: ^0.0.3" to clipboard
custom_shape_progress_indicator: ^0.0.3 copied to clipboard

A simple package for a custom-shaped progress indicator with multi-platform support

Custom shape progress indicator #

Usage #

import 'package:custom_shape_progress_indicator/custom_shape_progress_indicator.dart';

Rectangle progress indicator #

CustomShapeProgressIndicator(
    progress: 0.7,
    child: Container(
        padding: const EdgeInsets.all(8),
        decoration: BoxDecoration(
            borderRadius: BorderRadius.circular(10)),
        child: const Text('This is a progress indicator'),
    ),
)

Infinity progress indicator #

CustomShapeProgressIndicator(
    child: Container(
        padding: const EdgeInsets.all(8),
        decoration: BoxDecoration(
            borderRadius: BorderRadius.circular(10)),
        child: const Text('Infinity progress indicator'),
    ),
)
2
likes
160
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

A simple package for a custom-shaped progress indicator with multi-platform support

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on custom_shape_progress_indicator