flutter_chip_tags 1.0.2 copy "flutter_chip_tags: ^1.0.2" to clipboard
flutter_chip_tags: ^1.0.2 copied to clipboard

outdated

Clip Style Tags with TextFormField. Useful for adding Tags from TextFormField.

flutter_chip_tags #

flutter_chip_tags allow developers to create tags from list and add or remove tags from list. It has a TextFormField where user can insert value and it will seprate each tag by space. Similar to GitHub Manage Topics

Getting Started #

For Detailed Example head over to example/lib/main.dart #

Sample #

ChipTags(
  list: _myListCustom,
  chipColor: Colors.black,
  iconColor: Colors.white,
  textColor: Colors.white,
  decoration: InputDecoration(hintText: "Your Custom Hint"),
  keyboardType: TextInputType.text,
),

Properties #

Property Function
list List<String> which you want to display as Tags.
chipColor Sets Chip background color. By default it's Blue.
iconColor Sets Icon color. By default it's White.
textColor Sets Text color. By default it's White.
decoration It accepts InputDecoration to decorate TextFormField.
keyboradType It accepts TextInputType to set the keyboard layout.

Example Demo #

34
likes
0
pub points
84%
popularity

Publisher

unverified uploader

Clip Style Tags with TextFormField. Useful for adding Tags from TextFormField.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_chip_tags