An open API service indexing awesome lists of open source software.

https://github.com/teewrath/modifiable-progress-indicators

A Flutter package that let's you create beautiful modifiable progress indicators.
https://github.com/teewrath/modifiable-progress-indicators

dart flutter flutter-package progress-indicator pub-package

Last synced: 10 months ago
JSON representation

A Flutter package that let's you create beautiful modifiable progress indicators.

Awesome Lists containing this project

README

          

# Modifiable Progress Indicator

[![pub package](https://img.shields.io/pub/v/modifiable_progress_indicators.svg)](https://pub.dev/packages/modifiable_progress_indicators)

[![likes](https://img.shields.io/pub/likes/modifiable_progress_indicators)](https://pub.dev/packages/modifiable_progress_indicators/score)
[![popularity](https://img.shields.io/pub/popularity/modifiable_progress_indicators)](https://pub.dev/packages/modifiable_progress_indicators/score)
[![pub points](https://img.shields.io/pub/points/modifiable_progress_indicators)](https://pub.dev/packages/modifiable_progress_indicators/score)

## Introduction

Simple Modifiable Progress Indicators that let you add beautiful progress indicators to your flutter app.

## Installation

1. Add the latest version of package to your pubspec.yaml (and run`dart pub get`):

```yaml
dependencies:
modifiable_progress_indicators: ^0.0.1
```

2. Import the package and use it in your Flutter App.

```dart
import 'package:modifiable_progress_indicators/modifiable_progress_indicators.dart';
```

## Screenshots

## Details

There are a number of properties that you can modify:

- height
- width
- color
- stroke width
- image


# Example

```dart
ModifiableProgressIndicators(
height : 200,
width : 200,
circleColor : Colors.red,
strokeWidth : 5,
image : 'assets/img.png',
),
```

## Future Goals

- [ ] Add more kinds of progress indicators

## Support :heart:

Star project on [github.com](https://github.com/TeeWrath/modifiable-progress-indicators).

Like on [pub.dev](https://pub.dev/packages/modifiable_progress_indicators).