ChatInputStyle constructor

const ChatInputStyle({
  1. TextStyle styleText = const TextStyle(fontSize: 16, color: Colors.black, fontWeight: FontWeight.normal),
  2. bool enableLeandingIcon = true,
  3. double height = 256,
  4. Config? configEmojiPicker,
  5. Color activeColor = Colors.blue,
  6. Color inactiveColor = Colors.grey,
  7. String? hintText,
  8. TextStyle? hintTextStyle,
  9. int minLines = 1,
  10. int maxLines = 5,
  11. IconData? iconTrailing,
  12. IconData? iconLending,
  13. FocusNode? focusNode,
  14. InputDecoration? inputDecoration,
  15. ButtonStyle? styleIconButton,
})

Implementation

const ChatInputStyle(
    {this.styleText = const TextStyle(
      fontSize: 16,
      color: Colors.black,
      fontWeight: FontWeight.normal,
    ),
    this.enableLeandingIcon = true,
    this.height = 256,
    this.configEmojiPicker,
    this.activeColor = Colors.blue,
    this.inactiveColor = Colors.grey,
    this.hintText,
    this.hintTextStyle,
    this.minLines = 1,
    this.maxLines = 5,
    this.iconTrailing,
    this.iconLending,
    this.focusNode,
    this.inputDecoration,
    this.styleIconButton});