Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5.  
  6. class MyApp extends StatefulWidget {
  7. @override
  8. State<StatefulWidget> createState() {
  9. // TODO: implement createState
  10. return MyAppState();
  11. }
  12.  
  13. }
  14.  
  15. class MyAppState extends State<MyApp> {
  16. @override
  17. Widget build(BuildContext context) {
  18. // TODO: implement build
  19. return MaterialApp(
  20. home: Scaffold(
  21. body: Center(
  22. child: Image.asset("images/logo.png"),
  23. ),
  24. ),
  25. );
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement