chore: Follow up sending messages

This commit is contained in:
krille-chan 2023-12-30 16:20:19 +01:00
parent 2ec5139a0a
commit ab3dccf45b
No known key found for this signature in database

View file

@ -159,7 +159,11 @@ class Message extends StatelessWidget {
height: 16,
child: event.status == EventStatus.error
? const Icon(Icons.error, color: Colors.red)
: null,
: event.status == EventStatus.sending
? const CircularProgressIndicator.adaptive(
strokeWidth: 1,
)
: null,
),
),
)