File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -1639,9 +1639,9 @@ class _UnreadMarker extends StatelessWidget {
16391639 return Stack (
16401640 children: [
16411641 child,
1642- Positioned (
1642+ PositionedDirectional (
16431643 top: 0 ,
1644- left : 0 ,
1644+ start : 0 ,
16451645 bottom: 0 ,
16461646 width: 4 ,
16471647 child: AnimatedOpacity (
@@ -1653,13 +1653,20 @@ class _UnreadMarker extends StatelessWidget {
16531653 child: DecoratedBox (
16541654 decoration: BoxDecoration (
16551655 color: messageListTheme.unreadMarker,
1656- border: Border (left : BorderSide (
1656+ border: BorderDirectional (start : BorderSide (
16571657 width: 1 ,
1658- color: messageListTheme.unreadMarkerGap)))))),
1659- ]);
1658+ color: messageListTheme.unreadMarkerGap,
1659+ )),
1660+ ),
1661+ ),
1662+ ),
1663+ ),
1664+ ],
1665+ );
16601666 }
16611667}
16621668
1669+
16631670class StreamMessageRecipientHeader extends StatelessWidget {
16641671 const StreamMessageRecipientHeader ({
16651672 super .key,
You can’t perform that action at this time.
0 commit comments