We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae958e commit 8cd3ad5Copy full SHA for 8cd3ad5
lib/widgets/message_list.dart
@@ -1639,9 +1639,9 @@ class _UnreadMarker extends StatelessWidget {
1639
return Stack(
1640
children: [
1641
child,
1642
- Positioned(
+ PositionedDirectional(
1643
top: 0,
1644
- left: 0,
+ start: 0,
1645
bottom: 0,
1646
width: 4,
1647
child: AnimatedOpacity(
@@ -1653,7 +1653,7 @@ class _UnreadMarker extends StatelessWidget {
1653
child: DecoratedBox(
1654
decoration: BoxDecoration(
1655
color: messageListTheme.unreadMarker,
1656
- border: Border(left: BorderSide(
+ border: BorderDirectional(start: BorderSide(
1657
width: 1,
1658
color: messageListTheme.unreadMarkerGap)))))),
1659
]);
0 commit comments