feat: Changed sending indicator icons to svg icons

This commit is contained in:
Deven Joshi
2021-01-06 18:33:31 +05:30
parent c9ee6bfb25
commit ee0cdf567b
5 changed files with 36 additions and 21 deletions
+2 -4
View File
@@ -17,15 +17,13 @@ class SendingIndicator extends StatelessWidget {
@override
Widget build(BuildContext context) {
if (isMessageRead) {
return Icon(
Icons.done_all_rounded,
return StreamSvgIcon.checkAll(
size: size,
color: StreamChatTheme.of(context).colorTheme.accentBlue,
);
}
if (message.status == MessageSendingStatus.SENT || message.status == null) {
return Icon(
Icons.done,
return StreamSvgIcon.check(
size: size,
color: IconTheme.of(context).color.withOpacity(0.5),
);