This commit is contained in:
otsmr 2026-01-23 00:43:00 +01:00
parent 3aa35a95c5
commit 8e8027c63c
2 changed files with 3 additions and 2 deletions

View file

@ -135,6 +135,7 @@ class _UserListItem extends State<GroupListItem> {
_previewMessages.where((x) => x.type == MessageType.media).toList();
if (msgs.isNotEmpty &&
msgs.first.type == MessageType.media &&
!msgs.first.isDeletedFromSender &&
msgs.first.senderId != null &&
msgs.first.openedAt == null) {
_hasNonOpenedMediaFile = true;

View file

@ -6,8 +6,8 @@ class BlinkWidget extends StatefulWidget {
required this.child,
required this.enabled,
super.key,
this.blinkDuration = const Duration(milliseconds: 2500),
this.interval = const Duration(milliseconds: 100),
this.blinkDuration = const Duration(milliseconds: 2000),
this.interval = const Duration(milliseconds: 300),
this.visibleOpacity = 1.0,
this.hiddenOpacity = 0.05,
});