File tree Expand file tree Collapse file tree
packages/stream_chat_flutter/lib/src/message_list_view Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1235,15 +1235,11 @@ class _StreamMessageListViewState extends State<StreamMessageListView> {
12351235 onPressed: () async {
12361236 return scrollToBottomDefaultTapAction (unreadCount);
12371237 },
1238- child: widget.reverse
1239- ? Icon (
1240- context.streamIcons.arrowDown,
1241- color: _streamTheme.colorTheme.textHighEmphasis,
1242- )
1243- : Icon (
1244- context.streamIcons.arrowUp,
1245- color: _streamTheme.colorTheme.textHighEmphasis,
1246- ),
1238+ child: Icon (
1239+ widget.reverse ? context.streamIcons.arrowDown : context.streamIcons.arrowUp,
1240+ color: _streamTheme.colorTheme.textHighEmphasis,
1241+ size: 20 ,
1242+ ),
12471243 ),
12481244 if (showUnreadCount && widget.showUnreadCountOnScrollToBottom)
12491245 Positioned (
You can’t perform that action at this time.
0 commit comments