An implementation of Selectable or Input tags.
dependencies:
flutter_tags: "^0.1.0"
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);
},
)
Work in Progress...
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.