diff --git a/lib/main.dart b/lib/main.dart index 3e51cc7..0ebb25e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1 +1,17 @@ -// TODO: In day 2 of workshop \ No newline at end of file +import 'package:flutter/material.dart'; +main () => runApp(MyApp()); +class MyApp extends Statelesswidget { + @override + Widget build(Biuldcontext context){ + return MaterialApp( + home: Scaffold( + appBar: Appbar(title: Text("hello world"),), + body: Column( + children:[ + Text("hello world") + ], + ), + ), + ); + } +} \ No newline at end of file