{"id":5830,"date":"2023-12-06T07:43:14","date_gmt":"2023-12-06T07:43:14","guid":{"rendered":"https:\/\/www.folio3.com\/mobile\/?p=5830"},"modified":"2023-12-06T07:43:43","modified_gmt":"2023-12-06T07:43:43","slug":"exploring-flutter-navigation-from-basics-to-advanced-routes","status":"publish","type":"post","link":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/","title":{"rendered":"Exploring Flutter Navigation: From Basics to Advanced Routes"},"content":{"rendered":"\n<p>Hello, everyone! It\u2019s been a while since we last caught up \ud83d\ude04. Today, I&#8217;m excited to share an effective method for creating routes in the <code>go_router<\/code> library and explore the advanced features of ShellRoutes to take your Flutter navigation to the next level.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Understanding the Root and Nested Routes \ud83c\udf32<\/strong><\/h3>\n\n\n\n<p>Let\u2019s begin by addressing a common issue in <code>go_router<\/code> usage. While it seamlessly handles smaller applications, certain use cases can be problematic if not handled correctly. Placing all routes at the root level can lead to unexpected behaviors.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Example with routes at the root level\nreturn MaterialApp.router(\n \/\/ ... other configurations\n routerConfig: GoRouter(\n   initialLocation: '\/splash',\n   routes: &#91;\n     \/\/ ... routes\n   ],\n ),\n);<\/code><\/pre>\n\n\n\n<p>Understanding the concepts of root and nested routes is crucial. A root route closes the application when the back button is pressed, while a nested route does not.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Refactoring Routes for Better Structure \ud83c\udfd7\ufe0f<\/strong><\/h3>\n\n\n\n<p>To address this, consider restructuring your routes. In the refactored example below, routes are organized into root and nested categories, creating a more structured approach:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Refactored example with root and nested routes\nreturn MaterialApp.router(\n \/\/ ... other configurations\n routerConfig: GoRouter(\n   initialLocation: '\/splash',\n   routes: &#91;\n     GoRoute(\n       name: 'splash',\n       path: '\/splash',\n       builder: (context, state) => const SplashScreen(),\n     ),\n     GoRoute(\n       name: 'getStarted',\n       path: '\/getStarted',\n       builder: (context, state) => const GetStartedScreen(),\n       routes: &#91;\n         \/\/ ... nested routes\n       ],\n     ),\n     \/\/ ... other routes\n   ],\n ),\n);<\/code><\/pre>\n\n\n\n<p>This structure allows for a more controlled navigation experience, particularly when using the <code>goNamed<\/code> method. Nested routes automatically generate and maintain the back stack, ensuring a smoother user experience.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Exploring Advanced Navigation with ShellRoutes<\/strong> \ud83d\udc1a<\/h3>\n\n\n\n<p>As we delve deeper into the capabilities of <code>go_router<\/code>, it&#8217;s essential to explore advanced features like ShellRoutes. ShellRoutes provides a powerful mechanism for managing complex navigation flows in your Flutter application.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What are ShellRoutes?<\/strong><\/h3>\n\n\n\n<p>ShellRoutes allows you to create a hierarchical structure for your routes, similar to nested routes, but with added flexibility. They act as shells that encapsulate specific sections of your application, providing a more modular and maintainable approach.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Implementing ShellRoutes<\/strong><\/h3>\n\n\n\n<p>To implement ShellRoutes, you can leverage the ShellRouter class within the <code>go_router<\/code> library. Let&#8217;s take a look at a basic example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>return MaterialApp.router( \/\/ ... other configurations\n routerConfig: GoRouter(\n   initialLocation: '\/shellHome',\n   routes: &#91;\n     ShellRoute(\n       name: 'shellHome',\n       builder: (context, state, child) => const ShellHomeScreen(),\n       routes: &#91;\n         GoRoute(\n           name: 'dashboard',\n           path: '\/dashboard',\n           builder: (context, state) => const DashboardScreen(),\n         ),\n         GoRoute(\n           name: 'notifications',\n           path: '\/notifications',\n           builder: (context, state) => const NotificationsScreen(),\n         ),\n       ],\n     ), \/\/ ... other routes\n   ],\n ),\n);<\/code><\/pre>\n\n\n\n<p>In this example, ShellHomeScreen serves as the shell, containing nested routes for the dashboard and notifications. The use of ShellRoutes enhances code organization and navigation management.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Unleashing the Power of ShellRoutes<\/strong><\/h3>\n\n\n\n<p>ShellRoutes offers a dynamic and modular approach to Flutter application navigation. Let&#8217;s delve into the compelling benefits that come with embracing this advanced feature.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Benefits of ShellRoutes<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Modularity: ShellRoutes enables you to compartmentalize different sections of your app, promoting a modular code structure.<\/li>\n\n\n\n<li>Code Reusability: By encapsulating specific functionalities within shells, you can easily reuse them across different parts of your application.<\/li>\n\n\n\n<li>Effortless Maintenance: Managing and updating specific sections of your app becomes more straightforward with the structured approach offered by ShellRoutes.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Going Beyond Basics<\/strong><\/h3>\n\n\n\n<p>Feel free to experiment with more advanced features of ShellRoutes, such as route guards, transitions, and customizations. The flexibility provided by ShellRoutes empowers you to create a navigation architecture tailored to your application&#8217;s unique requirements.<\/p>\n\n\n\n<p>In the next part of this article series, we&#8217;ll explore these advanced ShellRoutes features in detail, unlocking the full potential of <code>go_router<\/code> for your Flutter development.<\/p>\n\n\n\n<p>To sum it up, navigating Flutter development complexities becomes more straightforward with the structured approach of <code>go_router<\/code> and embracing nested routes, including advanced features like ShellRoutes. This ensures scalability and efficient navigation, making it a valuable tool for maintainable code.<\/p>\n\n\n\n<p>Feel free to explore further, and thank you for taking the time to read this comprehensive article! Happy coding and fluttering! \ud83d\ude01\u2728\ud83d\ude80Here is the code for <code>go_router<\/code> best practices<br><a href=\"https:\/\/github.com\/saeed-younus\/flutter_best_practices\">https:\/\/github.com\/saeed-younus\/flutter_best_practices<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, everyone! It\u2019s been a while since we last caught up \ud83d\ude04. Today, I&#8217;m excited to share an effective method for creating routes in the go_router library and explore the advanced features of ShellRoutes to take your Flutter navigation to the next level. Understanding the Root and Nested Routes \ud83c\udf32 Let\u2019s begin by addressing a &hellip; <a href=\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Exploring Flutter Navigation: From Basics to Advanced Routes&#8221;<\/span><\/a><\/p>\n","protected":false},"author":70,"featured_media":5833,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[47,53],"tags":[],"class_list":["post-5830","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-app-development","category-flutter-app-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services<\/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\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services\" \/>\n<meta property=\"og:description\" content=\"Hello, everyone! It\u2019s been a while since we last caught up \ud83d\ude04. Today, I&#8217;m excited to share an effective method for creating routes in the go_router library and explore the advanced features of ShellRoutes to take your Flutter navigation to the next level. Understanding the Root and Nested Routes \ud83c\udf32 Let\u2019s begin by addressing a &hellip; Continue reading &quot;Exploring Flutter Navigation: From Basics to Advanced Routes&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\" \/>\n<meta property=\"og:site_name\" content=\"Mobile App Development Services\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-06T07:43:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-06T07:43:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Muhammad Saeed Younus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Muhammad Saeed Younus\" \/>\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\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\"},\"author\":{\"name\":\"Muhammad Saeed Younus\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/4bf1048c3755a8d5a19ee75bee95f176\"},\"headline\":\"Exploring Flutter Navigation: From Basics to Advanced Routes\",\"datePublished\":\"2023-12-06T07:43:14+00:00\",\"dateModified\":\"2023-12-06T07:43:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\"},\"wordCount\":533,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg\",\"articleSection\":[\"App Development\",\"flutter-app-development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\",\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\",\"name\":\"Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg\",\"datePublished\":\"2023-12-06T07:43:14+00:00\",\"dateModified\":\"2023-12-06T07:43:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage\",\"url\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg\",\"contentUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg\",\"width\":1200,\"height\":675},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.folio3.com\/mobile\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploring Flutter Navigation: From Basics to Advanced Routes\"}]},{\"@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\/4bf1048c3755a8d5a19ee75bee95f176\",\"name\":\"Muhammad Saeed Younus\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/efaf341c15e1dc42c2b8bb63bfffc0c1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/efaf341c15e1dc42c2b8bb63bfffc0c1?s=96&d=mm&r=g\",\"caption\":\"Muhammad Saeed Younus\"},\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/author\/muhammadsaeedyounusfolio3-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services","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\/exploring-flutter-navigation-from-basics-to-advanced-routes\/","og_locale":"en_US","og_type":"article","og_title":"Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services","og_description":"Hello, everyone! It\u2019s been a while since we last caught up \ud83d\ude04. Today, I&#8217;m excited to share an effective method for creating routes in the go_router library and explore the advanced features of ShellRoutes to take your Flutter navigation to the next level. Understanding the Root and Nested Routes \ud83c\udf32 Let\u2019s begin by addressing a &hellip; Continue reading \"Exploring Flutter Navigation: From Basics to Advanced Routes\"","og_url":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/","og_site_name":"Mobile App Development Services","article_published_time":"2023-12-06T07:43:14+00:00","article_modified_time":"2023-12-06T07:43:43+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg","type":"image\/jpeg"}],"author":"Muhammad Saeed Younus","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Muhammad Saeed Younus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#article","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/"},"author":{"name":"Muhammad Saeed Younus","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/4bf1048c3755a8d5a19ee75bee95f176"},"headline":"Exploring Flutter Navigation: From Basics to Advanced Routes","datePublished":"2023-12-06T07:43:14+00:00","dateModified":"2023-12-06T07:43:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/"},"wordCount":533,"commentCount":0,"publisher":{"@id":"https:\/\/www.folio3.com\/mobile\/#organization"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg","articleSection":["App Development","flutter-app-development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/","url":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/","name":"Exploring Flutter Navigation: From Basics to Advanced Routes - Mobile App Development Services","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg","datePublished":"2023-12-06T07:43:14+00:00","dateModified":"2023-12-06T07:43:43+00:00","breadcrumb":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#primaryimage","url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg","contentUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2023\/12\/New-Project-3.jpg","width":1200,"height":675},{"@type":"BreadcrumbList","@id":"https:\/\/www.folio3.com\/mobile\/blog\/exploring-flutter-navigation-from-basics-to-advanced-routes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.folio3.com\/mobile\/"},{"@type":"ListItem","position":2,"name":"Exploring Flutter Navigation: From Basics to Advanced Routes"}]},{"@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\/4bf1048c3755a8d5a19ee75bee95f176","name":"Muhammad Saeed Younus","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/efaf341c15e1dc42c2b8bb63bfffc0c1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/efaf341c15e1dc42c2b8bb63bfffc0c1?s=96&d=mm&r=g","caption":"Muhammad Saeed Younus"},"url":"https:\/\/www.folio3.com\/mobile\/blog\/author\/muhammadsaeedyounusfolio3-com\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5830"}],"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\/70"}],"replies":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/comments?post=5830"}],"version-history":[{"count":1,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5830\/revisions"}],"predecessor-version":[{"id":5834,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5830\/revisions\/5834"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media\/5833"}],"wp:attachment":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media?parent=5830"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/categories?post=5830"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/tags?post=5830"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}