{"id":1320,"date":"2023-04-30T01:31:17","date_gmt":"2023-04-30T00:31:17","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1320"},"modified":"2023-04-30T01:31:18","modified_gmt":"2023-04-30T00:31:18","slug":"how-to-use-gradient-in-react-native","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/","title":{"rendered":"How to Use Gradient in React Native"},"content":{"rendered":"\n<p>Add React Native gradient to your project.<\/p>\n\n\n\n<p>A gradient is a smooth transition or mix of two or more colors or tones. It is a visual effect that generates a <a href=\"https:\/\/origamisuite.dev\/blog\/2023\/04\/29\/the-art-of-color-choosing\/\" target=\"_blank\" rel=\"noreferrer noopener\">seamless transition from one color to the next<\/a>, usually in a linear or radial pattern. Gradients are often employed to lend depth, dimension, and visual appeal to an image or layout in a variety of design applications such as graphic design, web design, and digital artwork.<\/p>\n\n\n\n<p>In React Native, we can make a gradient design using the <em><strong>react-native-linear-gradient<\/strong><\/em> <a href=\"https:\/\/www.npmjs.com\/package\/react-native-linear-gradient\" target=\"_blank\" rel=\"noreferrer noopener\">package<\/a>. The first thing to do is to add this package to our project after which we add the import statement..<\/p>\n\n\n\n<p>Take a look &#8230;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">yarn add react-native-linear-gradient<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-react-native-gradient\">React Native Gradient<\/h2>\n\n\n\n<p>Here&#8217;s the full code for the project &#8230;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"jsx\" class=\"language-jsx\">import React, { Component } from 'react';\nimport { View, Text, StyleSheet } from 'react-native'\nimport LinearGradient from 'react-native-linear-gradient';\n\nclass App extends Component {\n  render(){\n    return(\n      &lt;View style={styles.container}>\n      &lt;Text style={styles.heading}>React Native Gradient&lt;\/Text>\n      &lt;View style={styles.gradientContainer}>\n      &lt;LinearGradient style={styles.item} colors={['#fc4a1a', '#f7b733', '#192f6a']}>\n      &lt;Text style={styles.text}>\n         Orange Fun\n      &lt;\/Text>\n    &lt;\/LinearGradient>\n      &lt;LinearGradient style={styles.item} colors={['#e1eec3', '#f05053']}>\n      &lt;Text>\n         Velvet Sun\n      &lt;\/Text>\n    &lt;\/LinearGradient>\n      &lt;LinearGradient style={styles.item} colors={['#1a2a6c', '#b21f1f', '#fdbb2d']}>\n      &lt;Text>\n         King Yna\n      &lt;\/Text>\n    &lt;\/LinearGradient>\n      &lt;LinearGradient style={styles.item} colors={['#22c1c3', '#fdbb2d']}>\n      &lt;Text>\n         Summer\n      &lt;\/Text>\n    &lt;\/LinearGradient>\n      &lt;\/View>\n      &lt;\/View>\n    )\n  }\n}\n\nconst styles = StyleSheet.create({\n  gradientContainer: {\n    flex: 1,\n    width: '100%',\n    flexDirection: 'row',\n    justifyContent: 'space-evenly',\n    flexWrap: 'wrap',\n    marginTop: 36\n  },\n  item: {\n    width: 108,\n    height: 108,\n    marginBottom: 18,\n    alignItems: 'center',\n    justifyContent: 'center'\n  },\n  text: {\n    color: 'black'\n  },\n  heading: {\n    textAlign: 'center',\n    marginTop: 18,\n    fontSize: 27,\n    color: 'black',\n    fontWeight: 'bold'\n  }\n})\nexport default App;\n<\/code><\/pre>\n\n\n\n<p>So in effect we&#8217;re just adding the gradient to the different boxes we created using flex-box. You can also choose whether or not you want a 2-or -3-color gradient design as shown in the result below.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/gradient.png\" alt=\"react native gradient \" class=\"wp-image-1322\" width=\"195\" height=\"390\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/gradient.png 163w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/gradient-150x300.png 150w\" sizes=\"auto, (max-width: 195px) 100vw, 195px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>This is how to add gradient colors to your project. If you&#8217;re looking for how to add Google Places Autocomplete search to your React Native project, <a href=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/\" target=\"_blank\" rel=\"noreferrer noopener\">you can check out this article<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Add React Native gradient to your project. A gradient is a smooth transition or mix of two or<\/p>\n","protected":false},"author":1,"featured_media":1323,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[31,98],"tags":[],"class_list":["post-1320","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-react-native","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Gradient in React Native<\/title>\n<meta name=\"description\" content=\"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Gradient in React Native\" \/>\n<meta property=\"og:description\" content=\"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-30T00:31:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-30T00:31:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"931\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"How to Use Gradient in React Native\",\"datePublished\":\"2023-04-30T00:31:17+00:00\",\"dateModified\":\"2023-04-30T00:31:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/\"},\"wordCount\":199,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Screen-Shot-2023-04-30-at-12.54.29-AM.png\",\"articleSection\":[\"react native\",\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/\",\"name\":\"How to Use Gradient in React Native\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Screen-Shot-2023-04-30-at-12.54.29-AM.png\",\"datePublished\":\"2023-04-30T00:31:17+00:00\",\"dateModified\":\"2023-04-30T00:31:18+00:00\",\"description\":\"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Screen-Shot-2023-04-30-at-12.54.29-AM.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Screen-Shot-2023-04-30-at-12.54.29-AM.png\",\"width\":931,\"height\":482,\"caption\":\"react native gradient\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-gradient-in-react-native\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"react native\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/react-native\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use Gradient in React Native\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Gradient in React Native","description":"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our","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:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Gradient in React Native","og_description":"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our","og_url":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2023-04-30T00:31:17+00:00","article_modified_time":"2023-04-30T00:31:18+00:00","og_image":[{"width":931,"height":482,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"How to Use Gradient in React Native","datePublished":"2023-04-30T00:31:17+00:00","dateModified":"2023-04-30T00:31:18+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/"},"wordCount":199,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","articleSection":["react native","softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/","url":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/","name":"How to Use Gradient in React Native","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","datePublished":"2023-04-30T00:31:17+00:00","dateModified":"2023-04-30T00:31:18+00:00","description":"In React Native, we can make a gradient using the react-native-linear-gradient package. The first thing to do is to add this package to our","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","width":931,"height":482,"caption":"react native gradient"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-gradient-in-react-native\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"react native","item":"https:\/\/codeflarelimited.com\/blog\/react-native\/"},{"@type":"ListItem","position":3,"name":"How to Use Gradient in React Native"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/04\/Screen-Shot-2023-04-30-at-12.54.29-AM.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1320","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1320"}],"version-history":[{"count":1,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1320\/revisions"}],"predecessor-version":[{"id":1324,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1320\/revisions\/1324"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1323"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1320"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}