Cw 187 fix separator color (#538)
* Revert commented color attribute for list separator * Handle theme nullability
Omar Hatem committed
Oct 17, 2022 at 22:57 UTC
6fbc658156f255fd2a488830e2674da3e16648ba
1 file changed
+1
-1
lib/src/widgets/standard_list.dart
+1
-1
@@ -88,7 +88,7 @@ class StandardListSeparator extends StatelessWidget {
88
color: Theme.of(context).backgroundColor,
89
child: Container(
90
height: height,
91
- // color: Theme.of(context).primaryTextTheme!.headline6!.backgroundColor!
91
+ color: Theme.of(context).primaryTextTheme.headline6?.backgroundColor
92
));
93
}
94
}