{"id":6681,"date":"2021-03-24T12:59:52","date_gmt":"2021-03-24T07:29:52","guid":{"rendered":"https:\/\/www.innovationm.com\/blog\/?p=6681"},"modified":"2023-01-20T18:55:07","modified_gmt":"2023-01-20T13:25:07","slug":"velocityx-in-flutter","status":"publish","type":"post","link":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/","title":{"rendered":"VelocityX in Flutter"},"content":{"rendered":"<p><span style=\"font-weight: 400;\"><strong>VelocityX<\/strong> is a completely free, open-source framework developed for minimising UI development efforts and time. It makes flutter UI development a lot easier and joyful for the developers. The official documentation mentions that this framework is built on top of Flutter SDK.<\/span><\/p>\n<p><span style=\"font-size: 1rem;\">VelocityX provides multiple widgets, shortcuts and utilities to rapidly build custom UI designs. It is also great for developers with prior SwiftUI experience as it is inspired by SwiftUI and Tailwindcss. Developers can build UI by concatenating one feature\/method over the other.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Getting Started&#8230;<\/span><\/p>\n<p><strong>To add\/use VelocityX in a project, developers need to add the following dependency in their pubspec.yaml file:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">dependencies:\r\n\r\n\u00a0\u00a0velocity_x: ^1.4.1<\/pre>\n<p><span style=\"font-weight: 400;\">** The version number may change as new updates come for this package.\u00a0<\/span><\/p>\n<p><strong>Now to install the package, use the following command:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">$ flutter pub get<\/pre>\n<p><span style=\"font-weight: 400;\">** Some code editors provide a direct way to get dependencies, no need to run this command.<\/span><\/p>\n<p><strong>Finally to use it in any dart file, import the package using the following statement:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">import 'package:velocity_x\/velocity_x.dart';<\/pre>\n<p><span style=\"font-weight: 400;\">Writing some Code\u2026<\/span><\/p>\n<h3><strong>After doing the initial setup, let&#8217;s dive right into the most interesting part. We can start with the colours utility.\u00a0<\/strong><\/h3>\n<p><strong>1. To use any colour, developers can use the following code:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">Vx.{colorname}{number}\r\n\r\neg: Vx.blue900<\/pre>\n<p><strong>(a) To use text colour, use the following code:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">.{colorname}{number}\r\n\r\n\u00a0eg: text.blue900<\/pre>\n<p><span style=\"font-weight: 400;\"><strong>2.<\/strong> <strong>For adding padding to your widgets\/UI elements, we can use custom methods provided by VelocityX team. Few examples are the following :<\/strong><\/span><\/p>\n<ul>\n<li><span style=\"font-weight: 400;\">For padding all sides \u2014&gt; .p0() : this is similar to EdgeInsets.all(0) in flutter, (or) .p8() : this is similar to EdgeInsets.all(8) in flutter.<\/span><\/li>\n<li><span style=\"font-weight: 400;\">Other paddings available are : .p1(), .p2(), .p4(), .p12(), etc.<\/span><\/li>\n<li><span style=\"font-weight: 400;\">For padding on left, right side (i.e. horizontal padding) \u2014&gt; .px0() : this is similar to EdgeInsets.symmetric(horizontal:0) in flutter, (or) .px8() : this is similar to EdgeInsets.symmetric(horizontal:8)<\/span><\/li>\n<li><span style=\"font-weight: 400;\">For padding from top and bottom direction (i.e. vertical padding) \u2014&gt; .py0() : this is similar to EdgeInsets.symmetric(vertical:0) in flutter, (or) .py8() : this is similar to EdgeInsets.symmetric(vertical:8)<\/span><\/li>\n<li><strong>Coding example of padding: <\/strong>Example: Text().p(10). It will give 10px paddings to the text-widget from all directions.<\/li>\n<\/ul>\n<p><strong>3. Utilities to add widgets in a particular direction in your application:<\/strong><\/p>\n<p><b>a) VStack\u00a0<\/b><\/p>\n<p><span style=\"font-weight: 400;\">This widget is used to display\/arrange it&#8217;s children in a vertical array. VStack widget does not support scrolling by default, but it can be added.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Example:<\/span><\/p>\n<pre class=\"lang:default decode:true \">VStack(\r\n\r\n\u00a0\u00a0\u00a0\u00a0[\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"VelocityX is Super\"),\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"Sample Text\"),\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"Yet, Another Sample Text\"),\r\n\r\n\u00a0\u00a0\u00a0\u00a0],\r\n\r\n).scrollVertical().p20();<\/pre>\n<p><strong>b) Hstack<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">This widget is used to display\/arrange it&#8217;s children in a horizontal array. HStack widget does not support scrolling by default, but it can be added.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Example:<\/span><\/p>\n<pre class=\"lang:default decode:true \">HStack(\r\n\r\n\u00a0\u00a0\u00a0\u00a0[\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"VelocityX is Super\").px12(),\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"Sample Text\").px12(),\r\n\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Text(\"Yet, Another Sample Text\").px12(),\r\n\r\n\u00a0\u00a0\u00a0\u00a0],\r\n\r\n).scrollHorizontal().p20();<\/pre>\n<p><span style=\"font-weight: 400;\">**VelocityX also provides other similar utilities like ZStack, VxBlock, and VxInlineBlock.<\/span><\/p>\n<p><strong>4. VelocityX also provides a direct method to create a container and to insert your widget inside this container. Developers can use the Box utility provided by velocityX for this purpose.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">Example:<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>a)<\/strong> <strong>Using VxBox -widget\u00a0<\/strong><\/span><\/p>\n<pre class=\"lang:default decode:true \">\u00a0Widget build(BuildContext context) {\r\n\r\n\u00a0\u00a0\u00a0\u00a0return VxBox(child: Text(\"VelocityX\")).red500.make().centered();\r\n\r\n\u00a0\u00a0}<\/pre>\n<p><span style=\"font-weight: 400;\"><strong>b) Using the extension method<\/strong><\/span><\/p>\n<pre class=\"lang:default decode:true\">\u00a0Widget build(BuildContext context) {\r\n\r\n\u00a0\u00a0\u00a0\u00a0return \"VelocityX\".text.make().box.red500.make().centered();;\r\n\r\n\u00a0\u00a0}<\/pre>\n<p><span style=\"font-weight: 400;\">The above-mentioned examples are only some of the utilities provided by the VelocityX framework, There are many more utilities provided. I would highly recommend developers use these features in their code. This would reduce their time and efforts in writing the code.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Thanks for reading this blog. Happy Coding!<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>VelocityX is a completely free, open-source framework developed for minimising UI development efforts and time. It makes flutter UI development a lot easier and joyful for the developers. The official documentation mentions that this framework is built on top of Flutter SDK. VelocityX provides multiple widgets, shortcuts and utilities to rapidly build custom UI designs. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":6682,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[568],"tags":[14,589],"class_list":["post-6681","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-flutter","tag-innovationm","tag-velocityx-in-flutter"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>VelocityX in Flutter - InnovationM - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VelocityX in Flutter - InnovationM - Blog\" \/>\n<meta property=\"og:description\" content=\"VelocityX is a completely free, open-source framework developed for minimising UI development efforts and time. It makes flutter UI development a lot easier and joyful for the developers. The official documentation mentions that this framework is built on top of Flutter SDK. VelocityX provides multiple widgets, shortcuts and utilities to rapidly build custom UI designs. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/\" \/>\n<meta property=\"og:site_name\" content=\"InnovationM - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-24T07:29:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-20T13:25:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InnovationM Admin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovationM Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/\"},\"author\":{\"name\":\"InnovationM Admin\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"headline\":\"VelocityX in Flutter\",\"datePublished\":\"2021-03-24T07:29:52+00:00\",\"dateModified\":\"2023-01-20T13:25:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/\"},\"wordCount\":509,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/VelocityX-in-flutter.png\",\"keywords\":[\"InnovationM\",\"VelocityX in Flutter\"],\"articleSection\":[\"Flutter\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/\",\"name\":\"VelocityX in Flutter - InnovationM - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/VelocityX-in-flutter.png\",\"datePublished\":\"2021-03-24T07:29:52+00:00\",\"dateModified\":\"2023-01-20T13:25:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/VelocityX-in-flutter.png\",\"contentUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/VelocityX-in-flutter.png\",\"width\":960,\"height\":540},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/velocityx-in-flutter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VelocityX in Flutter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\",\"name\":\"InnovationM - Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\",\"name\":\"InnovationM Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"caption\":\"InnovationM Admin\"},\"sameAs\":[\"http:\\\/\\\/www.innovationm.com\\\/\"],\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/author\\\/innovationmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VelocityX in Flutter - InnovationM - Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/","og_locale":"en_US","og_type":"article","og_title":"VelocityX in Flutter - InnovationM - Blog","og_description":"VelocityX is a completely free, open-source framework developed for minimising UI development efforts and time. It makes flutter UI development a lot easier and joyful for the developers. The official documentation mentions that this framework is built on top of Flutter SDK. VelocityX provides multiple widgets, shortcuts and utilities to rapidly build custom UI designs. [&hellip;]","og_url":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/","og_site_name":"InnovationM - Blog","article_published_time":"2021-03-24T07:29:52+00:00","article_modified_time":"2023-01-20T13:25:07+00:00","og_image":[{"width":960,"height":540,"url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png","type":"image\/png"}],"author":"InnovationM Admin","twitter_misc":{"Written by":"InnovationM Admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#article","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/"},"author":{"name":"InnovationM Admin","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"headline":"VelocityX in Flutter","datePublished":"2021-03-24T07:29:52+00:00","dateModified":"2023-01-20T13:25:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/"},"wordCount":509,"commentCount":1,"image":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png","keywords":["InnovationM","VelocityX in Flutter"],"articleSection":["Flutter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/","url":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/","name":"VelocityX in Flutter - InnovationM - Blog","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#primaryimage"},"image":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png","datePublished":"2021-03-24T07:29:52+00:00","dateModified":"2023-01-20T13:25:07+00:00","author":{"@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"breadcrumb":{"@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#primaryimage","url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png","contentUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2021\/03\/VelocityX-in-flutter.png","width":960,"height":540},{"@type":"BreadcrumbList","@id":"https:\/\/www.innovationm.com\/blog\/velocityx-in-flutter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innovationm.com\/blog\/"},{"@type":"ListItem","position":2,"name":"VelocityX in Flutter"}]},{"@type":"WebSite","@id":"https:\/\/www.innovationm.com\/blog\/#website","url":"https:\/\/www.innovationm.com\/blog\/","name":"InnovationM - Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innovationm.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed","name":"InnovationM Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","caption":"InnovationM Admin"},"sameAs":["http:\/\/www.innovationm.com\/"],"url":"https:\/\/www.innovationm.com\/blog\/author\/innovationmadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/6681","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/comments?post=6681"}],"version-history":[{"count":0,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/6681\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media\/6682"}],"wp:attachment":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media?parent=6681"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/categories?post=6681"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/tags?post=6681"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}