File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -485,14 +485,14 @@ class DateSeparator extends StatelessWidget {
485
485
child: Padding (
486
486
padding: const EdgeInsets .symmetric (vertical: 8 , horizontal: 2 ),
487
487
child: Row (children: [
488
- Expanded (
488
+ const Expanded (
489
489
child: SizedBox (height: 0 ,
490
490
child: DecoratedBox (
491
491
decoration: BoxDecoration (
492
492
border: Border (
493
493
bottom: BorderSide (
494
494
width: 0 ,
495
- color: color )))))),
495
+ color: Colors .black )))))),
496
496
Padding (padding: const EdgeInsets .symmetric (horizontal: 2 ),
497
497
// TODO dedupe with RecipientHeaderDate
498
498
child: Text (
@@ -512,13 +512,13 @@ class DateSeparator extends StatelessWidget {
512
512
zulipLocalizations,
513
513
DateTime .fromMillisecondsSinceEpoch (message.timestamp * 1000 ),
514
514
now: DateTime .now ()))),
515
- SizedBox (height: 0 , width: 12 ,
515
+ const SizedBox (height: 0 , width: 12 ,
516
516
child: DecoratedBox (
517
517
decoration: BoxDecoration (
518
518
border: Border (
519
519
bottom: BorderSide (
520
520
width: 0 ,
521
- color: color )))))
521
+ color: Colors .black )))))
522
522
])),
523
523
);
524
524
}
You can’t perform that action at this time.
0 commit comments