MessageBar constructor

MessageBar({
  1. bool replying = false,
  2. String replyingTo = "",
  3. List<Widget> actions = const [],
  4. Color replyWidgetColor = const Color(0xffF4F4F5),
  5. Color replyIconColor = Colors.blue,
  6. Color replyCloseColor = Colors.black12,
  7. Color messageBarColor = const Color(0xffF4F4F5),
  8. Color sendButtonColor = Colors.blue,
  9. String messageBarHintText = "Type your message here",
  10. TextStyle messageBarHintStyle = const TextStyle(fontSize: 16),
  11. TextStyle textFieldTextStyle = const TextStyle(color: Colors.black),
  12. void onTextChanged(
    1. String
    )?,
  13. void onSend(
    1. String
    )?,
  14. void onTapCloseReply()?,
})

MessageBar constructor

Implementation

MessageBar({
  this.replying = false,
  this.replyingTo = "",
  this.actions = const [],
  this.replyWidgetColor = const Color(0xffF4F4F5),
  this.replyIconColor = Colors.blue,
  this.replyCloseColor = Colors.black12,
  this.messageBarColor = const Color(0xffF4F4F5),
  this.sendButtonColor = Colors.blue,
  this.messageBarHintText = "Type your message here",
  this.messageBarHintStyle = const TextStyle(fontSize: 16),
  this.textFieldTextStyle = const TextStyle(color: Colors.black),
  this.onTextChanged,
  this.onSend,
  this.onTapCloseReply,
});