Skip to content

Instantly share code, notes, and snippets.

@carzacc
Created February 9, 2019 21:14
Show Gist options
  • Save carzacc/a430f0a09e5218399695a636e9729539 to your computer and use it in GitHub Desktop.
Save carzacc/a430f0a09e5218399695a636e9729539 to your computer and use it in GitHub Desktop.
image_picker guide
void main() =>runApp(PictureShowcaseApp());
class PictureShowcaseApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: PictureShowcaseHome("My Best Pictures"),
title: "My Best Pictures"
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment