feat: review fixes
This commit is contained in:
@@ -129,7 +129,7 @@ class _GroupInfoScreenState extends State<GroupInfoScreen> {
|
|||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: StreamSvgIcon.userAdd(
|
child: StreamSvgIcon.userAdd(
|
||||||
color: StreamChatTheme.of(context).accentColor),
|
color: StreamChatTheme.of(context).colorTheme.accentBlue),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -356,7 +356,8 @@ class _GroupInfoScreenState extends State<GroupInfoScreen> {
|
|||||||
padding: const EdgeInsets.only(right: 16.0, left: 8.0),
|
padding: const EdgeInsets.only(right: 16.0, left: 8.0),
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
child: StreamSvgIcon.check(
|
child: StreamSvgIcon.check(
|
||||||
color: StreamChatTheme.of(context).accentColor,
|
color:
|
||||||
|
StreamChatTheme.of(context).colorTheme.accentBlue,
|
||||||
size: 24.0,
|
size: 24.0,
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ class _ChannelFileDisplayScreenState extends State<ChannelFileDisplayScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
backgroundColor: StreamChatTheme.of(context).primaryColor,
|
backgroundColor: StreamChatTheme.of(context).colorTheme.white,
|
||||||
),
|
),
|
||||||
body: _buildMediaGrid(),
|
body: _buildMediaGrid(),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ class _ChannelMediaDisplayScreenState extends State<ChannelMediaDisplayScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
backgroundColor: StreamChatTheme.of(context).primaryColor,
|
backgroundColor: StreamChatTheme.of(context).colorTheme.white,
|
||||||
),
|
),
|
||||||
body: _buildMediaGrid(),
|
body: _buildMediaGrid(),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -621,7 +621,9 @@ class _ImageFooterState extends State<ImageFooter> {
|
|||||||
icon: Transform.rotate(
|
icon: Transform.rotate(
|
||||||
angle: -pi / 2,
|
angle: -pi / 2,
|
||||||
child: StreamSvgIcon.Icon_send_message(
|
child: StreamSvgIcon.Icon_send_message(
|
||||||
color: StreamChatTheme.of(context).accentColor,
|
color: StreamChatTheme.of(context)
|
||||||
|
.colorTheme
|
||||||
|
.accentBlue,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user