flutter_tags 0.0.1 copy "flutter_tags: ^0.0.1" to clipboard
flutter_tags: ^0.0.1 copied to clipboard

outdated

An implementation of Selectable or Input tags.

flutter_tags #

pub package Donate

An implementation of Selectable or Input tags.

##In your pubspec.yaml

dependencies:
  flutter_tags: "^0.1.0"

Selectable Tags #

    import 'package:flutter_tags/flutter_tags.dart';
    .
    .
    SelectableTags(
        tags: <Tag>[
            Tag(
                id:1,
                title: First Tag,
                active: true
            ),
            Tag(
                id:2,
                title: Second Tag,
                active: false
            ),
            .
            .
        ],
        columns: 3, // default 4
        onPressed: (tag){
            print(tag);
        },
    )

DEMO


Demo 1

Input Tags #

Work in Progress...

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

295
likes
0
pub points
94%
popularity

Publisher

verified publisherdn-a.dev

An implementation of Selectable or Input tags.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_tags