ChatTextField constructor
ChatTextField({})
Implementation
ChatTextField(
{super.key,
required this.send,
required this.controller,
this.onChanged,
this.backgroundColor,
this.maxLines = 5,
TextStyle? textStyle,
this.radius = 10,
this.hintText = "Type...",
this.viewEmojis = false,
TextStyle? hintStyle})
: textStyle = textStyle ?? Get.find<AppFonts>().S(),
hintStyle = hintStyle ??
Get.find<AppFonts>().S(color: Get.find<AppColors>().hintColor);