A Fluter package for taking text input and converting them to chips/tags
A Fluter package for taking text input and converting them to chips/tags . Kunal jain
Pub.dev link
Beautiful Tags input field
With Dart:
dart pub add text_chip_field
With Flutter:
flutter pub add text_chip_field
Pubspec.yaml:
dependencies:
text_chip_field: ^0.0.5
Import it:
import 'package:text_chip_field/text_chip_field.dart';
Frontend
TextChipField(
initialString: s,
seprator: " ",
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(30),
),
),
onChanged: (val) {
print(val); //"changed string"
},
),