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.
- Host: GitHub
- URL: https://github.com/teewrath/modifiable-progress-indicators
- Owner: TeeWrath
- License: mit
- Created: 2024-07-17T09:29:48.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-24T07:15:31.000Z (about 1 year ago)
- Last Synced: 2025-02-09T12:31:41.744Z (about 1 year ago)
- Topics: dart, flutter, flutter-package, progress-indicator, pub-package
- Language: C++
- Homepage: https://pub.dev/packages/modifiable_progress_indicators
- Size: 280 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Modifiable Progress Indicator
[](https://pub.dev/packages/modifiable_progress_indicators)
[](https://pub.dev/packages/modifiable_progress_indicators/score)
[](https://pub.dev/packages/modifiable_progress_indicators/score)
[](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).