♻️ Use drift instead for floor
This commit is contained in:
@ -97,7 +97,7 @@ class ChatEvent extends StatelessWidget {
|
||||
return Container(
|
||||
constraints: const BoxConstraints(maxWidth: 480),
|
||||
child: ChatEvent(
|
||||
item: snapshot.data!.data,
|
||||
item: snapshot.data!.data!,
|
||||
isMerged: false,
|
||||
isQuote: true,
|
||||
),
|
||||
|
@ -62,7 +62,7 @@ class ChatEventList extends StatelessWidget {
|
||||
return GestureDetector(
|
||||
behavior: HitTestBehavior.opaque,
|
||||
child: ChatEvent(
|
||||
key: Key('m${item.uuid}'),
|
||||
key: Key('m${item!.uuid}'),
|
||||
item: item,
|
||||
isMerged: isMerged,
|
||||
chatController: chatController,
|
||||
|
Reference in New Issue
Block a user