From 8fcbfcfb4d225ab241e81194bd9b67c6fb6c8d8e Mon Sep 17 00:00:00 2001 From: Mohd Usaid Date: Thu, 13 Feb 2020 13:09:46 +0530 Subject: [PATCH] Made hello world App --- .idea/codeStyles/Project.xml | 116 +++++++++++++++++++++++++ .idea/libraries/Flutter_Plugins.xml | 7 ++ .idea/modules.xml | 8 ++ .idea/tjff.iml | 12 +++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 130 ++++++++++++++++++++++++++++ lib/main.dart | 24 ++++- 7 files changed, 302 insertions(+), 1 deletion(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/libraries/Flutter_Plugins.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/tjff.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..681f41a --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,116 @@ + + + + + + + +
+ + + + xmlns:android + + ^$ + + + +
+
+ + + + xmlns:.* + + ^$ + + + BY_NAME + +
+
+ + + + .*:id + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + .*:name + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + name + + ^$ + + + +
+
+ + + + style + + ^$ + + + +
+
+ + + + .* + + ^$ + + + BY_NAME + +
+
+ + + + .* + + http://schemas.android.com/apk/res/android + + + ANDROID_ATTRIBUTE_ORDER + +
+
+ + + + .* + + .* + + + BY_NAME + +
+
+
+
+
+
\ No newline at end of file diff --git a/.idea/libraries/Flutter_Plugins.xml b/.idea/libraries/Flutter_Plugins.xml new file mode 100644 index 0000000..b0f6971 --- /dev/null +++ b/.idea/libraries/Flutter_Plugins.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..78a96ae --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/tjff.iml b/.idea/tjff.iml new file mode 100644 index 0000000..2ceef0e --- /dev/null +++ b/.idea/tjff.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e292ee3 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1581573912035 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart index 3e51cc7..96e5688 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1 +1,23 @@ -// TODO: In day 2 of workshop \ No newline at end of file +// TODO: In day 2 of workshop + +import "package:flutter/material.dart" + + + main()=>runApp(MyApp()) + + + class MyApp extends StatelessWidget( +@override +Widget build(BuildContext context){ + return MaterialApp( + home: Scaffold( + appBar: AppBar(title: Text("Hello World!"),), + body: Column( + children: [ + Text("Hello World") + ] + ) + ) + ) +} +) \ No newline at end of file