Update: switch back to theme colors

This commit is contained in:
Efthymis Sarmpanis
2023-10-12 16:18:39 +03:00
parent d7f518ca02
commit 2364413214
2 changed files with 4 additions and 4 deletions
@@ -65,7 +65,7 @@ StreamMessageInput(
child: const Icon(
Icons.location_on,
size: 20,
color: Colors.grey,
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
),
onTap: () {
final channel = StreamChannel.of(context).channel;
@@ -193,7 +193,7 @@ First, we add the attachment when the location button is clicked:
child: Icon(
Icons.location_on,
size: 20,
color: Colors.grey,
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
),
onTap: () {
_determinePosition().then((value) {
@@ -226,7 +226,7 @@ StreamMessageInput(
child: Icon(
Icons.location_on,
size: 20,
color: Colors.grey,
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
),
onTap: () {
_determinePosition().then((value) {
@@ -72,7 +72,7 @@ StreamMessageInput(
child: Icon(
Icons.location_on,
size: 20,
color: Colors.grey,
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
),
onTap: () {
// Do something here