@@ -145,7 +145,7 @@ class StreamChatThemeData {
|
||||
) {
|
||||
final accentColor = colorTheme.accentPrimary;
|
||||
final iconTheme =
|
||||
IconThemeData(color: colorTheme.textHighEmphasis.withOpacity(.5));
|
||||
IconThemeData(color: colorTheme.textHighEmphasis.withOpacity(0.5));
|
||||
final channelHeaderTheme = ChannelHeaderThemeData(
|
||||
avatarTheme: AvatarThemeData(
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
@@ -174,7 +174,7 @@ class StreamChatThemeData {
|
||||
color: const Color(0xff7A7A7A),
|
||||
),
|
||||
lastMessageAtStyle: textTheme.footnote.copyWith(
|
||||
color: colorTheme.textHighEmphasis.withOpacity(.5),
|
||||
color: colorTheme.textHighEmphasis.withOpacity(0.5),
|
||||
),
|
||||
indicatorIconSize: 16,
|
||||
);
|
||||
@@ -278,7 +278,7 @@ class StreamChatThemeData {
|
||||
return StreamSvgIcon.loveReaction(
|
||||
color: highlighted
|
||||
? theme.colorTheme.accentPrimary
|
||||
: theme.primaryIconTheme.color!.withOpacity(.5),
|
||||
: theme.primaryIconTheme.color!.withOpacity(0.5),
|
||||
size: size,
|
||||
);
|
||||
},
|
||||
@@ -290,7 +290,7 @@ class StreamChatThemeData {
|
||||
return StreamSvgIcon.thumbsUpReaction(
|
||||
color: highlighted
|
||||
? theme.colorTheme.accentPrimary
|
||||
: theme.primaryIconTheme.color!.withOpacity(.5),
|
||||
: theme.primaryIconTheme.color!.withOpacity(0.5),
|
||||
size: size,
|
||||
);
|
||||
},
|
||||
@@ -302,7 +302,7 @@ class StreamChatThemeData {
|
||||
return StreamSvgIcon.thumbsDownReaction(
|
||||
color: highlighted
|
||||
? theme.colorTheme.accentPrimary
|
||||
: theme.primaryIconTheme.color!.withOpacity(.5),
|
||||
: theme.primaryIconTheme.color!.withOpacity(0.5),
|
||||
size: size,
|
||||
);
|
||||
},
|
||||
@@ -314,7 +314,7 @@ class StreamChatThemeData {
|
||||
return StreamSvgIcon.lolReaction(
|
||||
color: highlighted
|
||||
? theme.colorTheme.accentPrimary
|
||||
: theme.primaryIconTheme.color!.withOpacity(.5),
|
||||
: theme.primaryIconTheme.color!.withOpacity(0.5),
|
||||
size: size,
|
||||
);
|
||||
},
|
||||
@@ -326,7 +326,7 @@ class StreamChatThemeData {
|
||||
return StreamSvgIcon.wutReaction(
|
||||
color: highlighted
|
||||
? theme.colorTheme.accentPrimary
|
||||
: theme.primaryIconTheme.color!.withOpacity(.5),
|
||||
: theme.primaryIconTheme.color!.withOpacity(0.5),
|
||||
size: size,
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user