From c90413699d740c5515a338848a47f276d3748271 Mon Sep 17 00:00:00 2001 From: Pooja Bhaumik Date: Sun, 16 Sep 2018 23:43:34 +0530 Subject: [PATCH] Update README.md --- README.md | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a14335..5611c6f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,11 @@ This is aimed for complete beginners in Flutter, to get them acquainted with the ## Text -
 Text(
+
+
+
+
+
+          
+## Container
+
+
 
+  Text(
           "Hello Flutter It is Awesome WOW",
           textAlign: TextAlign.right,
           textDirection: TextDirection.ltr,
@@ -18,7 +22,74 @@ This is aimed for complete beginners in Flutter, to get them acquainted with the
               wordSpacing: 40.0,
               decoration: TextDecoration.overline,
               decorationStyle: TextDecorationStyle.wavy),
-        ), 
+ ), + +
+ +
+ + + + + +
+
+     Container(
+        height: MediaQuery.of(context).size.height,
+        width: MediaQuery.of(context).size.width,
+        margin: EdgeInsets.all(25.0),
+        decoration: FlutterLogoDecoration(),
+      ),Container(
+        height: MediaQuery.of(context).size.height,
+        width: MediaQuery.of(context).size.width,
+        margin: EdgeInsets.all(25.0),
+        decoration: FlutterLogoDecoration(),
+      ),
+                              
+
+
+      Container(
+        height: MediaQuery.of(context).size.height,
+        width: MediaQuery.of(context).size.width,
+        margin: EdgeInsets.all(25.0),
+        decoration: new ShapeDecoration(
+          color: Colors.white,
+          shadows: [
+            BoxShadow(color: Colors.black, blurRadius: 15.0)
+          ],
+          shape: new Border.all(
+            color: Colors.red,
+            width: 8.0,
+          ),
+        ),
+        child: Center(child: const Text('Hello Flutter', textAlign: TextAlign.center)),
+      ),
+                              
+
+
+     Container(
+        height: MediaQuery.of(context).size.height,
+        width: MediaQuery.of(context).size.width,
+        margin: EdgeInsets.all(25.0),
+        decoration: new BoxDecoration(
+          color: Colors.yellow,
+          borderRadius: new BorderRadius.circular(55.0),
+          border: new Border.all(
+            width: 5.0,
+            color: Colors.red,
+          ),
+        ),
+        child: Center(child: const Text('Hello Flutter', textAlign: TextAlign.center)),
+      ),
+      
+
+ + ## Getting Started For help getting started with Flutter, view our online