Skip to content

Commit 6b8a02a

Browse files
committed
wip make dividers black
1 parent ee13363 commit 6b8a02a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/widgets/message_list.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,14 @@ class DateSeparator extends StatelessWidget {
485485
child: Padding(
486486
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 2),
487487
child: Row(children: [
488-
Expanded(
488+
const Expanded(
489489
child: SizedBox(height: 0,
490490
child: DecoratedBox(
491491
decoration: BoxDecoration(
492492
border: Border(
493493
bottom: BorderSide(
494494
width: 0,
495-
color: color)))))),
495+
color: Colors.black)))))),
496496
Padding(padding: const EdgeInsets.symmetric(horizontal: 2),
497497
// TODO dedupe with RecipientHeaderDate
498498
child: Text(
@@ -512,13 +512,13 @@ class DateSeparator extends StatelessWidget {
512512
zulipLocalizations,
513513
DateTime.fromMillisecondsSinceEpoch(message.timestamp * 1000),
514514
now: DateTime.now()))),
515-
SizedBox(height: 0, width: 12,
515+
const SizedBox(height: 0, width: 12,
516516
child: DecoratedBox(
517517
decoration: BoxDecoration(
518518
border: Border(
519519
bottom: BorderSide(
520520
width: 0,
521-
color: color)))))
521+
color: Colors.black)))))
522522
])),
523523
);
524524
}

0 commit comments

Comments
 (0)