Skip to content

Commit

Permalink
more consistent samsung pin location & cupertino subtitle size fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zlshames committed Sep 14, 2024
1 parent a90326a commit fed6f87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class _CupertinoConversationTileState extends CustomState<CupertinoConversationT
child: controller.subtitle ??
ChatSubtitle(
parentController: controller,
style: context.theme.textTheme.bodySmall!.copyWith(
style: context.theme.textTheme.bodyMedium!.copyWith(
color: controller.shouldHighlight.value
? context.theme.colorScheme.onBubble(context, controller.chat.isIMessage).withOpacity(0.85)
: context.theme.colorScheme.outline,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,14 @@ class _SamsungTrailingState extends CustomState<SamsungTrailing, void, Conversat
)
),
if (controller.chat.isPinned!) const SizedBox(width: 5.0),
if (controller.chat.isPinned!) Icon(Icons.star, size: 16, color: context.theme.colorScheme.tertiary),
if (muteType == "mute") const SizedBox(width: 5.0),
if (muteType == "mute")
Obx(() => Icon(
Icons.notifications_off,
color: controller.shouldHighlight.value || unread ? context.theme.colorScheme.onBackground : context.theme.colorScheme.outline,
size: 16,
)),
if (muteType == "mute") const SizedBox(width: 2.0),
if (controller.chat.isPinned!) Icon(Icons.star, size: 16, color: context.theme.colorScheme.tertiary),
],
),
);
Expand Down

0 comments on commit fed6f87

Please sign in to comment.