{"id":2695,"date":"2019-08-26T08:57:39","date_gmt":"2019-08-26T08:57:39","guid":{"rendered":"https:\/\/www.folio3.com\/mobile\/?p=2695"},"modified":"2020-03-26T16:55:22","modified_gmt":"2020-03-26T16:55:22","slug":"port-your-mobile-apps-on-to-web-lightning-quick-with-flutter","status":"publish","type":"post","link":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/","title":{"rendered":"Port your mobile apps on to web lightning quick with Flutter"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">The first look at Flutter&#8217;s web framework<\/h4>\n\n\n\n<p>In this blog, I\u2019ll be experimenting with Flutter Web for the very first time. As of now, most people know about Flutter is that its a cross-platform mobile application development framework that has the capability to develop applications for both Android and iOS. Well, this is absolutely true, however, Flutter team has really geared up from the very beginning to take&nbsp; Flutter beyond mobile devices.<\/p>\n\n\n\n<p>As soon as the first stable version of Flutter was released, the company announced that they\u2019ll be working to bring Flutter to the web.&nbsp; Not only that, they are aiming to have similar experiences on Desktop(Mac, Linux, and Windows) as well as on IoT.<\/p>\n\n\n\n<p>But in this blog, I\u2019ll be focusing on the web. Please note that Flutter\u2019s web implementation is currently in the technical preview which means the work is still going on and there may be some bugs and rough areas. <\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Installation<\/h4>\n\n\n\n<p>If you have Flutter already installed in your system, you won\u2019t find it hard to set it up for the web. Here&#8217;s the <a href=\"https:\/\/flutter.dev\/web\">link<\/a> of Flutter Web, where you can find complete guidance along with the technical details.<\/p>\n\n\n\n<p>To get started with Flutter web, check out this official repo available <a href=\"https:\/\/github.com\/flutter\/flutter_web\">here<\/a> which contains different example codes. You can also use Visual Studio Command Palette (Ctrl+Shift+P) to create a new web project by typing Flutter web which will give you the option to create a new web project.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Code Differences<\/h4>\n\n\n\n<p>I created a Flutter app for mobile a few days back just to demonstrate how a Flutter app looks like, so I decided to convert the same app for the web platform.<\/p>\n\n\n\n<p>Below is the code for Welcome page of the mobile version of the app, let&#8217;s see how much change is required to run the same page on the web:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import 'package:flutter\/material.dart';\nimport '..\/widgets\/nav-drawer.dart';\n\nclass WelcomePage extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('Flutter Demo'),\n      ),\n      drawer: NavDrawer(),\n      body: Container(\n        child: Center(\n          child: Text(\n            'Welcome to Flutter',\n            style: TextStyle(fontSize: 40),\n          ),\n        ),\n      ),\n    );\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>Code for Web:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import 'package:flutter_web\/material.dart';\nimport '..\/widgets\/nav-drawer.dart';\n\nclass WelcomePage extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('Flutter Demo'),\n      ),\n      drawer: NavDrawer(),\n      body: Container(\n        child: Center(\n          child: Text(\n            'Welcome to Flutter',\n            style: TextStyle(fontSize: 40),\n          ),\n        ),\n      ),\n    );\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>If you find it hard to spot the difference, let me tell you that the only difference is this single line at the start: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import 'package:flutter_web\/material.dart';<\/code><\/pre>\n\n\n\n<p>That&#8217;s true if you are familiar with the layout of Flutter (mobile) you already know the same about its web. Isn&#8217;t that amazing? Chances are that in the future, Flutter may release new components for the web too.<\/p>\n\n\n\n<p>Look at the following videos. The same app is running on two different platforms.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Flutter Mobile<\/h4>\n\n\n\n<figure class=\"wp-block-video\"><video controls muted src=\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/20190806_163254.mkv\"><\/video><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Flutter Web<\/h4>\n\n\n\n<figure class=\"wp-block-video\"><video controls muted src=\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/flutter_web_3.mkv\"><\/video><\/figure>\n\n\n\n<p>Although Flutter web is currently in the technical preview at this time, it looks very promising in various aspects. The good thing is if you know Flutter for mobile, you already know it for the Web (of course with some platform-based concepts). All you need to do is to learn its architecture and how it works under the hood with browser APIs. So, let&#8217;s wait until the first stable version launches. We&#8217;ll be diving deep into the details in the upcoming blogs on Flutter.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The first look at Flutter&#8217;s web framework In this blog, I\u2019ll be experimenting with Flutter Web for the very first time. As of now, most people know about Flutter is that its a cross-platform mobile application development framework that has the capability to develop applications for both Android and iOS. Well, this is absolutely true, &hellip; <a href=\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Port your mobile apps on to web lightning quick with Flutter&#8221;<\/span><\/a><\/p>\n","protected":false},"author":37,"featured_media":2723,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2695","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Developed Mobile App on Web Lightning with Flutter<\/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.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Developed Mobile App on Web Lightning with Flutter\" \/>\n<meta property=\"og:description\" content=\"The first look at Flutter&#8217;s web framework In this blog, I\u2019ll be experimenting with Flutter Web for the very first time. As of now, most people know about Flutter is that its a cross-platform mobile application development framework that has the capability to develop applications for both Android and iOS. Well, this is absolutely true, &hellip; Continue reading &quot;Port your mobile apps on to web lightning quick with Flutter&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\" \/>\n<meta property=\"og:site_name\" content=\"Mobile App Development Services\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-26T08:57:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-26T16:55:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash-1024x680.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Noc Folio3\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Noc Folio3\" \/>\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.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\"},\"author\":{\"name\":\"Noc Folio3\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/0b6e4f68efbd12d222ac9422766c61eb\"},\"headline\":\"Port your mobile apps on to web lightning quick with Flutter\",\"datePublished\":\"2019-08-26T08:57:39+00:00\",\"dateModified\":\"2020-03-26T16:55:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\"},\"wordCount\":501,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\",\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\",\"name\":\"How to Developed Mobile App on Web Lightning with Flutter\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"datePublished\":\"2019-08-26T08:57:39+00:00\",\"dateModified\":\"2020-03-26T16:55:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage\",\"url\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"contentUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg\",\"width\":\"4288\",\"height\":\"2848\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.folio3.com\/mobile\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Port your mobile apps on to web lightning quick with Flutter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#website\",\"url\":\"https:\/\/www.folio3.com\/mobile\/\",\"name\":\"Mobile App Development Services\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.folio3.com\/mobile\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\",\"name\":\"Mobile App Development Services\",\"url\":\"https:\/\/www.folio3.com\/mobile\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png\",\"contentUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png\",\"width\":210,\"height\":50,\"caption\":\"Mobile App Development Services\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/0b6e4f68efbd12d222ac9422766c61eb\",\"name\":\"Noc Folio3\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/29f05a21b8db20048e7717694b024bbd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/29f05a21b8db20048e7717694b024bbd?s=96&d=mm&r=g\",\"caption\":\"Noc Folio3\"},\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/author\/noc\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Developed Mobile App on Web Lightning with Flutter","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.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/","og_locale":"en_US","og_type":"article","og_title":"How to Developed Mobile App on Web Lightning with Flutter","og_description":"The first look at Flutter&#8217;s web framework In this blog, I\u2019ll be experimenting with Flutter Web for the very first time. As of now, most people know about Flutter is that its a cross-platform mobile application development framework that has the capability to develop applications for both Android and iOS. Well, this is absolutely true, &hellip; Continue reading \"Port your mobile apps on to web lightning quick with Flutter\"","og_url":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/","og_site_name":"Mobile App Development Services","article_published_time":"2019-08-26T08:57:39+00:00","article_modified_time":"2020-03-26T16:55:22+00:00","og_image":[{"width":1024,"height":680,"url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash-1024x680.jpg","type":"image\/jpeg"}],"author":"Noc Folio3","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Noc Folio3","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#article","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/"},"author":{"name":"Noc Folio3","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/0b6e4f68efbd12d222ac9422766c61eb"},"headline":"Port your mobile apps on to web lightning quick with Flutter","datePublished":"2019-08-26T08:57:39+00:00","dateModified":"2020-03-26T16:55:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/"},"wordCount":501,"commentCount":0,"publisher":{"@id":"https:\/\/www.folio3.com\/mobile\/#organization"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/","url":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/","name":"How to Developed Mobile App on Web Lightning with Flutter","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","datePublished":"2019-08-26T08:57:39+00:00","dateModified":"2020-03-26T16:55:22+00:00","breadcrumb":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#primaryimage","url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","contentUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2019\/08\/farzad-nazifi-p-xSl33Wxyc-unsplash.jpg","width":"4288","height":"2848"},{"@type":"BreadcrumbList","@id":"https:\/\/www.folio3.com\/mobile\/blog\/port-your-mobile-apps-on-to-web-lightning-quick-with-flutter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.folio3.com\/mobile\/"},{"@type":"ListItem","position":2,"name":"Port your mobile apps on to web lightning quick with Flutter"}]},{"@type":"WebSite","@id":"https:\/\/www.folio3.com\/mobile\/#website","url":"https:\/\/www.folio3.com\/mobile\/","name":"Mobile App Development Services","description":"","publisher":{"@id":"https:\/\/www.folio3.com\/mobile\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.folio3.com\/mobile\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.folio3.com\/mobile\/#organization","name":"Mobile App Development Services","url":"https:\/\/www.folio3.com\/mobile\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/","url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png","contentUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png","width":210,"height":50,"caption":"Mobile App Development Services"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/0b6e4f68efbd12d222ac9422766c61eb","name":"Noc Folio3","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/29f05a21b8db20048e7717694b024bbd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/29f05a21b8db20048e7717694b024bbd?s=96&d=mm&r=g","caption":"Noc Folio3"},"url":"https:\/\/www.folio3.com\/mobile\/blog\/author\/noc\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/2695"}],"collection":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/users\/37"}],"replies":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/comments?post=2695"}],"version-history":[{"count":18,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/2695\/revisions"}],"predecessor-version":[{"id":3230,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/2695\/revisions\/3230"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media\/2723"}],"wp:attachment":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media?parent=2695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/categories?post=2695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/tags?post=2695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}