From 28272cbed570637b4e79a6242c99649cd1f82be5 Mon Sep 17 00:00:00 2001 From: Kunal0119 Date: Thu, 13 Feb 2020 13:08:50 +0530 Subject: [PATCH] workshop d2 --- lib/main.dart | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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