fluttertagselector 0.1.0 copy "fluttertagselector: ^0.1.0" to clipboard
fluttertagselector: ^0.1.0 copied to clipboard

discontinued

Flutter package for creating selector tags. The tag contains a Icon and Text and Icon changes to Icons.check when selected.

example/example.dart

import 'package:flutter/material.dart';
import 'package:fluttertagselector/fluttertagselector.dart';
import 'package:fluttertagselector/tag_class.dart';

class Example extends StatelessWidget {
  final List<Tags> tagList = [
    Tags("Label 1",Icons.map),
    Tags("Label 2",Icons.headset),
    Tags("Label 3",Icons.info),
    Tags("Label 4",Icons.cake),
    Tags("Label 5",Icons.ac_unit),
  ];
  @override
  Widget build(BuildContext context) {
    return TagGenrator(tagList: tagList, fillRandomColor: true);
  }
}
10
likes
40
pub points
40%
popularity

Publisher

unverified uploader

Flutter package for creating selector tags. The tag contains a Icon and Text and Icon changes to Icons.check when selected.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on fluttertagselector