{"id":21238,"date":"2022-11-12T17:06:10","date_gmt":"2022-11-12T11:36:10","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/"},"modified":"2022-11-12T17:06:10","modified_gmt":"2022-11-12T11:36:10","slug":"solved-i-want-to-make-a-circle-with-buttons-in-react-native","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/","title":{"rendered":"[Solved] I want to make a circle with buttons in react native"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-64736095\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"64736095\" data-parentid=\"64735280\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Final result:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\" alt=\"enter image description here\"><\/a><\/p>\n<p>Here is how you can do it:<\/p>\n<pre class=\"lang-js prettyprint-override\"><code>import * as React from 'react';\nimport { Text, View, StyleSheet, TouchableOpacity } from 'react-native';\nimport Constants from 'expo-constants';\n\n\/\/ You can import from local files\nimport AssetExample from '.\/components\/AssetExample';\n\n\/\/ or any pure javascript modules available in npm\nimport { Card } from 'react-native-paper';\n\nexport default function App() {\n  const handleClick = (num) =&gt; {\n    alert(`${num} clicked`);\n  };\n  return (\n    &lt;View style={styles.container}&gt;\n    &lt;View style={styles.btnContainer}&gt;\n      &lt;View style={styles.btnContainerMiddle}&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(1)}\n          style={[\n            styles.button,\n            { position: 'absolute', left: -100, top: 50 },\n          ]}&gt;\n          &lt;Text&gt;1&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(2)}\n          style={[styles.button]}&gt;\n          &lt;Text&gt;2&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(3)}\n          style={[styles.button, { position: 'absolute', left: 100, top: 50 }]}&gt;\n          &lt;Text&gt;3&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n      &lt;\/View&gt;\n      &lt;View style={[styles.btnContainerMiddle, { justifyContent: 'center' }]}&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(4)}\n          style={[\n            styles.button,\n            { height: 100, width: 100, borderRadius: 50, margin: 10 },\n          ]}&gt;\n          &lt;Text&gt;4&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n      &lt;\/View&gt;\n      &lt;View style={styles.btnContainerMiddle}&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(5)}\n          style={[\n            styles.button,\n            { position: 'absolute', left: -100, bottom: 60 },\n          ]}&gt;\n          &lt;Text&gt;5&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(6)}\n          style={[styles.button]}&gt;\n          &lt;Text&gt;6&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n        &lt;TouchableOpacity\n          onPress={() =&gt; handleClick(7)}\n          style={[\n            styles.button,\n            { position: 'absolute', right: -100, bottom: 60 },\n          ]}&gt;\n          &lt;Text&gt;7&lt;\/Text&gt;\n        &lt;\/TouchableOpacity&gt;\n      &lt;\/View&gt;\n    &lt;\/View&gt;\n    &lt;\/View&gt;\n  );\n}\n\nconst styles = StyleSheet.create({\n  container:{\n    flex: 1,\n    justifyContent: \"center\",\n    alignItems: \"center\"\n  },\n  btnContainer: {\n    \/\/ flex: 1,\n    justifyContent: 'center',\n    paddingTop: Constants.statusBarHeight,\n    backgroundColor: 'grey',\n    padding: 8,\n    width: 400,\n    height: 400,\n    borderRadius: 100,\n    alignItems: 'center',\n  },\n  btnContainerMiddle: {\n    flexDirection: 'row',\n    alignItems: 'center',\n  },\n  button: {\n    margin: 10,\n    width: 70,\n    height: 70,\n    backgroundColor: 'white',\n    borderRadius: 35,\n    justifyContent: 'center',\n    alignItems: 'center',\n  },\n});\n\n\n<\/code><\/pre>\n<p>Here is <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/snack.expo.io\/@xeteke8423\/circular-btn-example\">Live Demo<\/a> of the app, you can play around with it to make further adjustments.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved I want to make a circle with buttons in react native <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Final result: Here is how you can do it: import * as React from &#8216;react&#8217;; import { Text, View, StyleSheet, TouchableOpacity } from &#8216;react-native&#8217;; import Constants from &#8216;expo-constants&#8217;; \/\/ You can import from local files import AssetExample from &#8216;.\/components\/AssetExample&#8217;; \/\/ or any pure javascript modules available in npm import { Card } from &#8216;react-native-paper&#8217;; &#8230; <a title=\"[Solved] I want to make a circle with buttons in react native\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\" aria-label=\"More on [Solved] I want to make a circle with buttons in react native\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[1975,784],"class_list":["post-21238","post","type-post","status-publish","format-standard","hentry","category-solved","tag-react-native","tag-reactjs"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] I want to make a circle with buttons in react native - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] I want to make a circle with buttons in react native - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Final result: Here is how you can do it: import * as React from &#039;react&#039;; import { Text, View, StyleSheet, TouchableOpacity } from &#039;react-native&#039;; import Constants from &#039;expo-constants&#039;; \/\/ You can import from local files import AssetExample from &#039;.\/components\/AssetExample&#039;; \/\/ or any pure javascript modules available in npm import { Card } from &#039;react-native-paper&#039;; ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-12T11:36:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] I want to make a circle with buttons in react native\",\"datePublished\":\"2022-11-12T11:36:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\"},\"wordCount\":52,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\",\"keywords\":[\"react-native\",\"reactjs\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\",\"name\":\"[Solved] I want to make a circle with buttons in react native - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\",\"datePublished\":\"2022-11-12T11:36:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] I want to make a circle with buttons in react native\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] I want to make a circle with buttons in react native - JassWeb","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:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] I want to make a circle with buttons in react native - JassWeb","og_description":"[ad_1] Final result: Here is how you can do it: import * as React from 'react'; import { Text, View, StyleSheet, TouchableOpacity } from 'react-native'; import Constants from 'expo-constants'; \/\/ You can import from local files import AssetExample from '.\/components\/AssetExample'; \/\/ or any pure javascript modules available in npm import { Card } from 'react-native-paper'; ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/","og_site_name":"JassWeb","article_published_time":"2022-11-12T11:36:10+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] I want to make a circle with buttons in react native","datePublished":"2022-11-12T11:36:10+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/"},"wordCount":52,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif","keywords":["react-native","reactjs"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/","url":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/","name":"[Solved] I want to make a circle with buttons in react native - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif","datePublished":"2022-11-12T11:36:10+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-I-want-to-make-a-circle-with-buttons-in.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-make-a-circle-with-buttons-in-react-native\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] I want to make a circle with buttons in react native"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21238","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=21238"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21238\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=21238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=21238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=21238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}