Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatefulWidget {
  6. @override
  7. _MyAppState createState() => _MyAppState();
  8. }
  9.  
  10. class _MyAppState extends State<MyApp> {
  11. Widget build(BuildContext context) => MaterialApp(
  12. home: Scaffold(
  13. appBar: AppBar(
  14. brightness: Brightness.light,
  15. backgroundColor: Colors.white,
  16. title: const Text('Plugin example app'),
  17. ),
  18. body: Center(
  19. child: Text('a'),
  20. ),
  21. ),
  22. );
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement