MessageBar constructor
MessageBar({
- bool replying = false,
- String replyingTo = "",
- List<
Widget> actions = const [], - Color replyWidgetColor = const Color(0xffF4F4F5),
- Color replyIconColor = Colors.blue,
- Color replyCloseColor = Colors.black12,
- Color messageBarColor = const Color(0xffF4F4F5),
- Color sendButtonColor = Colors.blue,
- String messageBarHintText = "Type your message here",
- TextStyle messageBarHintStyle = const TextStyle(fontSize: 16),
- TextStyle textFieldTextStyle = const TextStyle(color: Colors.black),
- void onTextChanged()?,
- void onSend()?,
- 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,
});