diff --git a/main.dart b/main.dart index 0af26f9..28951df 100644 --- a/main.dart +++ b/main.dart @@ -1,5 +1,22 @@ -void main() { - print("Flutter is amazing"); - print( - "Flutter Example apps repo is the collections of awesome apps built with flutter"); +//updated as according to repo-name(FlutterExample) +import 'package:flutter/material.dart'; +void main() => runApp(MyApp()); + +class MyApp extends StatelessWidget { + @override + Widget build(BuildContext context) { + return MaterialApp( + home: Center( + Text( + "updated app", + style: TextStyle( + color: Colors.red, + fontSize: 18, + fontWeight: FontWeight.bold, + ), + ), + ), + ); + } } +