Skip to content

Commit

Permalink
Render adjacent table divider rows
Browse files Browse the repository at this point in the history
amake committed Nov 23, 2024
1 parent c217a44 commit 8f2e31b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/src/widget/org_table.dart
Original file line number Diff line number Diff line change
@@ -89,6 +89,11 @@ class OrgTableWidget extends StatelessWidget {
),
],
);
} else if (prevRow is OrgTableDividerRow && row is OrgTableDividerRow) {
yield TableRow(
decoration: BoxDecoration(border: Border(bottom: borderSide)),
children: List.filled(columnCount, const SizedBox(height: 8)),
);
}
}
}

0 comments on commit 8f2e31b

Please sign in to comment.