flutter-chat-app icon indicating copy to clipboard operation
flutter-chat-app copied to clipboard

ChatMessageListItem

Open mishubham opened this issue 6 years ago • 2 comments

itemBuilder: (_, DataSnapshot messageSnapshot, Animation animation) { return new ChatMessageListItem( messageSnapshot: messageSnapshot, animation: animation, ); },

this gives error. please tell mi solution

mishubham avatar Jan 18 '19 04:01 mishubham

Use this

itemBuilder: (_, DataSnapshot messageSnapshot, Animation animation, int x) { return new ChatMessageListItem( messageSnapshot: messageSnapshot, animation: animation, ); },

amitkhairnar44 avatar Jan 28 '19 10:01 amitkhairnar44

okay thanx

mishubham avatar Feb 08 '19 08:02 mishubham