Skip to content

Commit

Permalink
Update: switch back to theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
esarbanis committed Oct 12, 2023
1 parent d7f518c commit 2364413
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2364413

Please sign in to comment.