Skip to content

Commit

Permalink
replace spacing to SizedBox
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Feb 6, 2025
1 parent a1a1daf commit 458ac27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/remix/demo/lib/components/header_use_case.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@ Widget buildCard(BuildContext context) {
);

final actions = Row(
spacing: 16,
children: [
IconButton(
CupertinoIcons.trash,
variants: const [FortalezaIconButtonStyle.ghost],
onPressed: () {},
),
const SizedBox(
height: 16,
),
Button(label: 'Button', onPressed: () {}),
],
);
Expand Down

0 comments on commit 458ac27

Please sign in to comment.