FlutterMultipleFill constructor

FlutterMultipleFill({
  1. Key? key,
  2. TextStyle circleAvatarTextStyle = const TextStyle(fontSize: 12),
  3. Color circleAvatarColor = Colors.black,
  4. TextStyle chipTextStyle = const TextStyle(fontSize: 12, color: Colors.white),
  5. Color chipColor = Colors.blue,
  6. double chipLabelPadding = 1,
  7. InputDecoration inputDecoration = const InputDecoration(hintText: "Add email or other text", filled: false, hintStyle: TextStyle(fontSize: 12)),
  8. bool emailPattern = true,
  9. Decoration boxDecoration = const BoxDecoration(color: Colors.transparent),
  10. double boxPadding = 0,
  11. TextInputType keyboardType = TextInputType.emailAddress,
  12. required FillCallback onfillCallback,
})

Implementation

FlutterMultipleFill(
    {Key? key,
    this.circleAvatarTextStyle = const TextStyle(fontSize: 12),
    this.circleAvatarColor = Colors.black,
    this.chipTextStyle = const TextStyle(fontSize: 12, color: Colors.white),
    this.chipColor = Colors.blue,
    this.chipLabelPadding = 1,
    this.inputDecoration = const InputDecoration(
      hintText: "Add email or other text",
      filled: false,
      hintStyle: TextStyle(fontSize: 12),
    ),
    this.emailPattern = true,
    this.boxDecoration = const BoxDecoration(color: Colors.transparent),
    this.boxPadding = 0,
    this.keyboardType = TextInputType.emailAddress,
    required this.onfillCallback})
    : super(key: key);