Chips
Add customizable and easy-to-use chip widgets to your Flutter apps for seamless user input and display.
You can check out a live demo using Widgetbook here.
Getting started
In your library add the following import:
import 'package:chips/chips.dart';
Then you just have to add a ChoiceChips
with values:
ChipsChoice(
values: ['Apple', 'Banana'],
)