flutter-chat-app
flutter-chat-app copied to clipboard
ChatMessageListItem
itemBuilder: (_, DataSnapshot messageSnapshot,
Animation
this gives error. please tell mi solution
Use this
itemBuilder: (_, DataSnapshot messageSnapshot, Animation animation, int x) { return new ChatMessageListItem( messageSnapshot: messageSnapshot, animation: animation, ); },
okay thanx