Skip to content

Commit

Permalink
fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shakeebkhan66 committed Jun 5, 2024
1 parent 8723074 commit 5f4b046
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/utils/kwargs_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ class TableWidget extends StatefulWidget {

class _TableWidgetState extends State<TableWidget> {
TableRow _buildTableRow(
MapEntry<String, String> rowData,
int index,
) {
MapEntry<String, String> rowData,
int index,
) {
return TableRow(
children: [
_buildTableCell(
Expand Down Expand Up @@ -201,10 +201,10 @@ class _TableWidgetState extends State<TableWidget> {
),
...widget.tableData.asMap().entries.map(
(entry) => _buildTableRow(
entry.value,
entry.key,
),
),
entry.value,
entry.key,
),
),
],
);
}
Expand Down

0 comments on commit 5f4b046

Please sign in to comment.