Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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);

```