feat: wip message input
This commit is contained in:
@@ -839,10 +839,13 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
return IconTheme(
|
return IconTheme(
|
||||||
data:
|
data:
|
||||||
StreamChatTheme.of(context).channelTheme.messageInputButtonIconTheme,
|
StreamChatTheme.of(context).channelTheme.messageInputButtonIconTheme,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Center(
|
||||||
child: Material(
|
child: Material(
|
||||||
clipBehavior: Clip.hardEdge,
|
clipBehavior: Clip.hardEdge,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.circular(32),
|
borderRadius: BorderRadius.circular(24),
|
||||||
),
|
),
|
||||||
color: Colors.grey,
|
color: Colors.grey,
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
@@ -856,6 +859,8 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -863,10 +868,13 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
return IconTheme(
|
return IconTheme(
|
||||||
data:
|
data:
|
||||||
StreamChatTheme.of(context).channelTheme.messageInputButtonIconTheme,
|
StreamChatTheme.of(context).channelTheme.messageInputButtonIconTheme,
|
||||||
|
child: Center(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Material(
|
child: Material(
|
||||||
clipBehavior: Clip.hardEdge,
|
clipBehavior: Clip.hardEdge,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.circular(32),
|
borderRadius: BorderRadius.circular(24),
|
||||||
),
|
),
|
||||||
color: StreamChatTheme.of(context).accentColor,
|
color: StreamChatTheme.of(context).accentColor,
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
@@ -880,6 +888,8 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user