We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1862b4b commit 39176f7Copy full SHA for 39176f7
lib/screens/channel/chat/chat.dart
@@ -52,8 +52,10 @@ class Chat extends StatelessWidget {
52
controller: chatStore.scrollController,
53
itemCount: chatStore.renderMessages.length,
54
itemBuilder: (context, index) => ChatMessage(
55
- ircMessage: chatStore.renderMessages.reversed
56
- .toList()[index],
+ ircMessage: chatStore.renderMessages[
+ chatStore.renderMessages.length -
57
+ 1 -
58
+ index],
59
chatStore: chatStore,
60
),
61
);
0 commit comments