Darken decoration bar left of reply on light background
This commit is contained in:
parent
2ad57fb69b
commit
9d84082ac8
1 changed files with 9 additions and 3 deletions
|
|
@ -31,10 +31,16 @@ class ReplyContent extends StatelessWidget {
|
|||
timeline != null ? replyEvent.getDisplayEvent(timeline) : replyEvent;
|
||||
final fontSize = AppConfig.messageFontSize * AppConfig.fontSizeFactor;
|
||||
final color = theme.brightness == Brightness.dark
|
||||
? theme.colorScheme.onTertiaryContainer
|
||||
: ownMessage
|
||||
// Pangea#
|
||||
? ownMessage
|
||||
? theme.colorScheme.tertiaryContainer
|
||||
: theme.colorScheme.tertiary;
|
||||
: theme.colorScheme.onTertiaryContainer
|
||||
: theme.colorScheme.tertiary;
|
||||
// ? theme.colorScheme.onTertiaryContainer
|
||||
// : ownMessage
|
||||
// ? theme.colorScheme.tertiaryContainer
|
||||
// : theme.colorScheme.tertiary;
|
||||
// Pangea#
|
||||
|
||||
return Material(
|
||||
color: Colors.transparent,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue