We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d560e commit c023ca1Copy full SHA for c023ca1
lib/widgets/message_list.dart
@@ -635,7 +635,9 @@ class _AnimatedUnread extends StatelessWidget {
635
opacity: isRead ? 0 : 1,
636
// Web uses 2s and 0.3s durations, and a CSS ease-out curve.
637
// See zulip:web/styles/message_row.css .
638
- duration: Duration(milliseconds: isRead ? 2000 : 300),
+ // As of now we wait for the ack from the server
639
+ // so we're going with 0.1s as soon as the ack is received.
640
+ duration: Duration(milliseconds: isRead ? 100 : 300),
641
curve: Curves.easeOut,
642
child: child);
643
}
0 commit comments