Skip to content

Commit

Permalink
fix: add const
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed May 20, 2023
1 parent 9e547fb commit dd601c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/src/layout/layout_modern.dart
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,10 @@ class _LayoutModernState extends State<LayoutModern> {
),
),
Config.spaceBox(Config.smallSpacer),
Row(
const Row(
mainAxisAlignment:
MainAxisAlignment.center,
children: const [
children: [
SHDivider(),
],
),
Expand Down Expand Up @@ -413,10 +413,10 @@ class _LayoutModernState extends State<LayoutModern> {
],
),
),
Row(
const Row(
mainAxisAlignment:
MainAxisAlignment.center,
children: const [
children: [
SHDivider(),
],
),
Expand Down

0 comments on commit dd601c2

Please sign in to comment.