Guest User

Untitled

a guest
Jul 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. @override
  7. Widget build(BuildContext context) {
  8. return MaterialApp(
  9. title: 'Welcome to Flutter',
  10. home: Scaffold(
  11. appBar: AppBar(
  12. title: Text('Welcome to Flutter'),
  13. ),
  14. body: Center(
  15. child: Text('Hello World'),
  16. ),
  17. ),
  18. );
  19. }
  20. }
Add Comment
Please, Sign In to add comment