rohan20 / flutter-chat-app

A chat app built on Flutter with firebase authentication and image sharing capability.
MIT License
1.13k stars 326 forks source link

ChatMessageListItem #11

Open mishubham opened 5 years ago

mishubham commented 5 years ago

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

this gives error. please tell mi solution

amitkhairnar44 commented 5 years ago

Use this

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

mishubham commented 5 years ago

okay thanx