This commit is contained in:
Salvatore Giordano
2020-12-31 09:57:21 +01:00
parent db932d4e32
commit a8171f7314
5 changed files with 11 additions and 8 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ class AttachmentError extends StatelessWidget {
return Center(
child: Container(
width: size?.width,
height: size?.height,
color: Color(0xffd0021B).withOpacity(.1),
height: size?.height ?? 200,
color: StreamChatTheme.of(context).colorTheme.accentRed.withOpacity(.1),
child: Center(
child: Icon(
Icons.error_outline,
color: StreamChatTheme.of(context).colorTheme.white,
color: StreamChatTheme.of(context).colorTheme.black,
),
),
),