Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3.  
  4. void main() => runApp(MyApp());
  5.  
  6.  
  7.  
  8. class MyApp extends StatelessWidget {
  9.  
  10. // This widget is the root of your application.
  11.  
  12. @override
  13.  
  14. Widget build(BuildContext context) {
  15.  
  16. return MaterialApp(
  17.  
  18. home: Scaffold(
  19. appBar: AppBar(
  20. title: Text('titulo'),
  21.  
  22. ),
  23.  
  24. body:
  25.  
  26. Center(
  27.  
  28. child: Text('AMELIA LADRÓN DE GUEVARA MARTÍNEZ')
  29.  
  30. ),
  31.  
  32. )
  33.  
  34.  
  35. );
  36.  
  37. }
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement