Update: switch back to theme colors
This commit is contained in:
+3
-3
@@ -65,7 +65,7 @@ StreamMessageInput(
|
|||||||
child: const Icon(
|
child: const Icon(
|
||||||
Icons.location_on,
|
Icons.location_on,
|
||||||
size: 20,
|
size: 20,
|
||||||
color: Colors.grey,
|
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
final channel = StreamChannel.of(context).channel;
|
final channel = StreamChannel.of(context).channel;
|
||||||
@@ -193,7 +193,7 @@ First, we add the attachment when the location button is clicked:
|
|||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.location_on,
|
Icons.location_on,
|
||||||
size: 20,
|
size: 20,
|
||||||
color: Colors.grey,
|
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
_determinePosition().then((value) {
|
_determinePosition().then((value) {
|
||||||
@@ -226,7 +226,7 @@ StreamMessageInput(
|
|||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.location_on,
|
Icons.location_on,
|
||||||
size: 20,
|
size: 20,
|
||||||
color: Colors.grey,
|
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
_determinePosition().then((value) {
|
_determinePosition().then((value) {
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ StreamMessageInput(
|
|||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.location_on,
|
Icons.location_on,
|
||||||
size: 20,
|
size: 20,
|
||||||
color: Colors.grey,
|
color: StreamChatTheme.of(context).colorTheme.textLowEmphasis,
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
// Do something here
|
// Do something here
|
||||||
|
|||||||
Reference in New Issue
Block a user