Created
February 9, 2019 21:14
-
-
Save carzacc/a430f0a09e5218399695a636e9729539 to your computer and use it in GitHub Desktop.
image_picker guide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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