diff --git a/Flutter Hello_World b/Flutter Hello_World new file mode 100644 index 0000000..06c5943 --- /dev/null +++ b/Flutter Hello_World @@ -0,0 +1,22 @@ +#hello_world + +import 'package:flutter/material.dart'; + +void main() => runApp(MyApp()); + +class MyApp extends StatelessWidget { + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Welcome to Flutter', + home: Scaffold( + appBar: AppBar( + title: Text('Welcome to Flutter'), + ), + body: Center( + child: Text('Hello World'), + ), + ), + ); + } +}