diff --git a/README.md b/README.md
index a1bd9fb111..ac21d30ef1 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,11 @@
A Flutter widget for rendering html and css as Flutter widgets.
+
+
## Installing:
@@ -33,7 +35,7 @@ This package is designed with simplicity in mind. Originally created to allow ba
this project has expanded to include support for basic styling as well!.
## Example Usage:
-(For a much more extensive example, look at example/main.dart).
+(For a much more extensive example, look at [example](https://github.com/Sub6Resources/flutter_html/tree/master/example).
```dart
Widget html = Html(
data: """
@@ -70,3 +72,12 @@ this project has expanded to include support for basic styling as well!.
// Display the image in large form.
},
);
+```
+
+## Migration Guides
+- For Version 1.0 [Guide](https://github.com/Sub6Resources/flutter_html/wiki/1.0.0-Migration-Guide)
+
+## Contribution Guide
+> Coming soon!
+>
+> Meanwhile, PRs are always welcome
\ No newline at end of file
diff --git a/example/README.md b/example/README.md
index a135626028..a8bc76b67d 100644
--- a/example/README.md
+++ b/example/README.md
@@ -1,16 +1,204 @@
-# example
+# Example
-A new Flutter project.
+Detailed Example for flutter_html package
-## Getting Started
+# Basic Example
+```dart
+ Widget html = Html(
+ data: """
+
+
Demo Page
+
This is a fantastic product that you should buy!
+
Features
+
+
It actually works
+
It exists
+
It doesn't cost much!
+
+
+
+ """,
+ //Optional parameters:
+ backgroundColor: Colors.white70,
+ onLinkTap: (url) {
+ // open url in a webview
+ },
+ style: {
+ "div": Style(
+ block: Block(
+ margin: EdgeInsets.all(16),
+ border: Border.all(width: 6),
+ backgroundColor: Colors.grey,
+ ),
+ textStyle: TextStyle(
+ color: Colors.red,
+ ),
+ ),
+ },
+ onImageTap: (src) {
+ // Display the image in large form.
+ },
+ );
+```
-This project is a starting point for a Flutter application.
+# Detailed Example
-A few resources to get you started if this is your first Flutter project:
+## Example HTML data string/body
-- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
+```html
+const htmlData = """
+
Header 1
+
Header 2
+
Header 3
+
Header 4
+
Header 5
+
Header 6
+
Ruby Support:
+
+
+ 漢
+ 字
+
+ is Japanese Kanji.
+
+
Support for sub/sup
+ Solve for xn: log2(x2+n) = 93
+
One of the most common equations in all of physics is E=mc2.