fix: Corrected padding and giphy chip
This commit is contained in:
@@ -298,6 +298,7 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
prefix: _giphyEnabled ? Chip(
|
prefix: _giphyEnabled ? Chip(
|
||||||
backgroundColor: StreamChatTheme.of(context).accentColor,
|
backgroundColor: StreamChatTheme.of(context).accentColor,
|
||||||
label: Row(
|
label: Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
Icon(StreamIcons.lightning, color: Colors.white,),
|
Icon(StreamIcons.lightning, color: Colors.white,),
|
||||||
SizedBox(width: 2,),
|
SizedBox(width: 2,),
|
||||||
@@ -646,7 +647,7 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
return Center(
|
return Center(
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.only(left: 8.0, right: 4.0, top: 8.0, bottom: 8.0),
|
||||||
child: Icon(StreamIcons.lightning),
|
child: Icon(StreamIcons.lightning),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
@@ -662,7 +663,7 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
return Center(
|
return Center(
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.only(left: 4.0, right: 8.0, top: 8.0, bottom: 8.0),
|
||||||
child: Icon(StreamIcons.attach),
|
child: Icon(StreamIcons.attach),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
|
|||||||
Reference in New Issue
Block a user