Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created March 24, 2019 21:39
Show Gist options
  • Save redbluenat/cc7d691f48f8b2a7273f4c19883da315 to your computer and use it in GitHub Desktop.
Save redbluenat/cc7d691f48f8b2a7273f4c19883da315 to your computer and use it in GitHub Desktop.
Widget imagePreviewWidget() {
return Container(
child: Padding(
padding: const EdgeInsets.only(top: 10),
child: Align(
alignment: Alignment.topCenter,
child: imagePath == null
? null
: SizedBox(
child: Image.file(File(imagePath)),
height: 290.0,
),
),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment