Skip to content

Commit

Permalink
feat(packet): sized id column
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Jan 5, 2025
1 parent 83321d1 commit 139abcd
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions lib/features/packet/view/packet_detail_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,15 @@ class _PacketDetailPageState extends State<PacketDetailPage> {
padding: edgeInsetsL12T4R12,
child: Row(
children: [
Text(
'${dataSorted[index].id}',
style: Theme.of(context)
.textTheme
.titleMedium
?.copyWith(color: secondaryColor),
SizedBox(
width: 20,
child: Text(
'${dataSorted[index].id}',
style: Theme.of(context)
.textTheme
.titleMedium
?.copyWith(color: secondaryColor),
),
),
Expanded(
child: ListTile(
Expand Down

0 comments on commit 139abcd

Please sign in to comment.