messageFormContainer method
Implementation
Widget messageFormContainer(BuildContext context) {
return Flexible(
flex: 1,
child: Container(
decoration: BoxDecoration(
color: Colors.black.withOpacity(0.3),
borderRadius: BorderRadius.circular(6),
),
child: Row(
children: [
messageSendForm(context),
IconButtonView(
icon: Icons.send,
showBackgroundColor: false,
onTap: () => sendMessage(context),
)
],
),
),
);
}