Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacksiroke/anisi_controls
A couple of my own custom made controls you may find useful to your flutter project
https://github.com/jacksiroke/anisi_controls
flutter flutter-package flutter-plugin
Last synced: 3 days ago
JSON representation
A couple of my own custom made controls you may find useful to your flutter project
- Host: GitHub
- URL: https://github.com/jacksiroke/anisi_controls
- Owner: JacksiroKe
- License: apache-2.0
- Created: 2020-09-18T10:00:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-13T13:14:23.000Z (over 3 years ago)
- Last Synced: 2024-02-02T13:00:37.748Z (12 months ago)
- Topics: flutter, flutter-package, flutter-plugin
- Language: Dart
- Homepage: https://pub.dev/packages/anisi_controls
- Size: 511 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Anisi Controls
## Getting Started
Widgets Inside:
* AsTextView
* AsLineProgress
* AsInformer
* AsLoader## Basic Usage
Adding the widgets
```dart
AsTextView textView = AsTextView.setUp("TextView that can state", 25, true, Colors.blue, Colors.grey);
AsLineProgress lineProgress = AsLineProgress.setUp(63, Colors.black, Colors.blue[900], Colors.blue);
AsInformer progress = AsInformer.setUp(1, "This is a Progress Informer widget", Colors.blue, Colors.transparent, Colors.white, 10);
AsInformer success = AsInformer.setUp(2, "This is a Success Informer widget", Colors.green, Colors.transparent, Colors.white, 10);
AsInformer failure = AsInformer.setUp(3, "This is a Failure Informer widget", Colors.red, Colors.transparent, Colors.white, 10);
AsLoader loader = AsLoader.setUp(Colors.blue);
```