Skip to content

Instantly share code, notes, and snippets.

@shafayathossain
Last active October 20, 2025 14:17
Show Gist options
  • Select an option

  • Save shafayathossain/457d7c09c5bd6a0a4324ce7c4d4f3d79 to your computer and use it in GitHub Desktop.

Select an option

Save shafayathossain/457d7c09c5bd6a0a4324ce7c4d4f3d79 to your computer and use it in GitHub Desktop.
Flutter Preview - Preview Function
@Preview(
name: 'Simple Widget',
size: Size(401, 300) // <-- 2. Pass size
)
Widget previewSimpleWidget() {
return Center(
child: SimpleWidget(
text: "Settings",
icon: Icons.settings,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment