mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
chore: Fix file message color follow up
This commit is contained in:
parent
5b538e385b
commit
e1b3b8242b
@ -34,7 +34,7 @@ class MessageDownloadContent extends StatelessWidget {
|
||||
children: [
|
||||
Icon(
|
||||
Icons.file_download_outlined,
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
color: textColor,
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Expanded(
|
||||
@ -42,7 +42,7 @@ class MessageDownloadContent extends StatelessWidget {
|
||||
filename,
|
||||
maxLines: 1,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
color: textColor,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
@ -55,7 +55,7 @@ class MessageDownloadContent extends StatelessWidget {
|
||||
Text(
|
||||
filetype,
|
||||
style: TextStyle(
|
||||
color: textColor,
|
||||
color: textColor.withAlpha(150),
|
||||
),
|
||||
),
|
||||
const Spacer(),
|
||||
@ -63,7 +63,7 @@ class MessageDownloadContent extends StatelessWidget {
|
||||
Text(
|
||||
sizeString,
|
||||
style: TextStyle(
|
||||
color: textColor,
|
||||
color: textColor.withAlpha(150),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user