{"id":3054,"date":"2021-02-16T10:15:12","date_gmt":"2021-02-16T10:15:12","guid":{"rendered":"https:\/\/serkanseker.com\/?p=3054"},"modified":"2021-02-22T07:15:23","modified_gmt":"2021-02-22T07:15:23","slug":"xamarin-forms-custom-font-family","status":"publish","type":"post","link":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/","title":{"rendered":"Xamarin.Forms Custom Font Family"},"content":{"rendered":"\n<p>In this article, I will explain the use of custom <strong>fonts <\/strong>in your Xamarin.Forms applications and how to use platform-specific <strong>font<\/strong>.<\/p>\n\n\n\n<p>So, let\u2019s started. Follow the steps below in order.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1) Download the font(s) you want to use<\/h2>\n\n\n\n<p>There are many sources you can download custom fonts to use in your applications. The most preferred font collection service of these is <a href=\"https:\/\/fonts.google.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Google Fonts<\/a>. Alternatively, you can also download free or paid fonts from sources such as <a href=\"https:\/\/www.dafont.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">DaFont <\/a>or <a href=\"https:\/\/www.fontsquirrel.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Font Squirrel<\/a>.<\/p>\n\n\n\n<p>First, download the font you want to use from any collection and extract it from ZIP. Xamarin.Forms only supports fonts with the extension oft and ttf. Pay attention to the extension of the font you are going to download.<\/p>\n\n\n\n<p>I downloaded NunitoSans and Oswald fonts for this sample project because I usually use Google fonts in my own applications.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Google-Fonts.jpg\" alt=\"Xamarin.Forms Custom Google Fonts\" class=\"wp-image-3057\"\/><figcaption>Download the fonts you want to use<\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">2) Put your font(s) in Resources folder<\/h2>\n\n\n\n<p>Put the fonts you downloaded into the Resources folder in the Android and iOS folders of your application. You can drag and drop it.<\/p>\n\n\n\n<p>Actually, it doesn&#8217;t matter in which folder the fonts are located. You can add your fonts to the Assests folder or any other folder you have created. However, since the fonts are usually located in the Resources folder, I also put the fonts in the Resources folder.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2021\/02\/Xamarin-Android-Resources-Custom-Fonts.jpg\" alt=\"Xamarin.Android Resources Custom Fonts\" class=\"wp-image-3058\"\/><figcaption>Put your fonts in Resources folder<\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">3) Create resource dictionaries in App.xaml<\/h2>\n\n\n\n<p>Resource Dictionaries is a repository of resources created to customize XAML views. With resource dictionaries, you can customize the appearance of a XAML item to apply to all pages. The resources you create in App.xaml will be valid for the whole application. (<a href=\"https:\/\/serkanseker.com\/xamarin-forms-resource-dictionaries\/\" target=\"_blank\" rel=\"noreferrer noopener\">Xamarin.Forms Resource Dictionaries<\/a>)<\/p>\n\n\n\n<p>For this sample project, let&#8217;s change the font of the Label elements on all pages in the application.<\/p>\n\n\n\n<p>Add source controls into <strong>App.xaml<\/strong> as follows. Thus, the Label elements on all pages in the application will be customized according to this source. Remember to define the <strong>TargetType<\/strong> and <strong>x: Key<\/strong> attributes here.<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-markup\">&lt;Application.Resources&gt;\n    &lt;Style TargetType=&quot;Label&quot;&gt;\n        &lt;Setter Property=&quot;FontSize&quot; Value=&quot;Large&quot;\/&gt;\n        &lt;Setter Property=&quot;HorizontalOptions&quot; Value=&quot;Center&quot;\/&gt;\n    &lt;\/Style&gt;\n\n    &lt;Style x:Key=&quot;NormalFont&quot; TargetType=&quot;Label&quot;&gt;\n        &lt;Setter Property=&quot;FontFamily&quot; Value=&quot;NunitoSans-Regular.ttf#NunitoSans-Regular.ttf&quot;\/&gt;\n    &lt;\/Style&gt;   \n    &lt;Style x:Key=&quot;BoldFont&quot; TargetType=&quot;Label&quot;&gt;\n        &lt;Setter Property=&quot;FontFamily&quot; Value=&quot;NunitoSans-Bold.ttf#NunitoSans-Bold.ttf&quot;\/&gt;\n    &lt;\/Style&gt;\n    &lt;Style x:Key=&quot;ItalicFont&quot; TargetType=&quot;Label&quot;&gt;\n        &lt;Setter Property=&quot;FontFamily&quot; Value=&quot;NunitoSans-Italic.ttf#NunitoSans-Italic.ttf&quot;\/&gt;\n    &lt;\/Style&gt;\n&lt;\/Application.Resources&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4) Consume your resources in XAML<\/h2>\n\n\n\n<p>Refer to keys defined in the resources you create in App.xaml such as NormalFont, BoldFont, ItalicFont in XAML Static.<\/p>\n\n\n\n<p>In the code snippet below, the Label that is not binded to the source in a ContentPage has the default font of Xamarin.Forms. Other Labels appear with the font of the attribute it is binded to.<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-markup\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;\n&lt;ContentPage xmlns=&quot;http:\/\/xamarin.com\/schemas\/2014\/forms&quot;\n             xmlns:x=&quot;http:\/\/schemas.microsoft.com\/winfx\/2009\/xaml&quot;\n             x:Class=&quot;Weather.View.FontsPage&quot;&gt;\n    &lt;ContentPage.Content&gt;\n        &lt;StackLayout  Margin=&quot;0,50,0,0&quot;&gt;\n            &lt;Label Text=&quot;Default Text&quot;\/&gt;\n            &lt;Label Style=&quot;{StaticResource NormalFont}&quot; Text=&quot;Normal Text&quot;\/&gt;\n            &lt;Label Style=&quot;{StaticResource BoldFont}&quot; Text=&quot;Bold Text&quot;\/&gt;\n            &lt;Label Style=&quot;{StaticResource ItalicFont}&quot; Text=&quot;Italic Text&quot;\/&gt;\n        &lt;\/StackLayout&gt;\n    &lt;\/ContentPage.Content&gt;\n&lt;\/ContentPage&gt;<\/code><\/pre>\n\n\n\n<p>After completing the steps, run the application.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-473x1024.jpg\" alt=\"Xamarin.Forms Custom Font Family\" class=\"wp-image-3059\" width=\"237\" height=\"512\"\/><figcaption>Xamarin.Forms Custom Font Family<\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Use of Platform-Specific Custom Font(s)<\/h2>\n\n\n\n<p>You can use a different font for each platform in your application. For example, the text in a Label may have a different font on the Android platform and on the iOS platform.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>To do this, first create a page-level resource on the XAML page that contains the view item.<\/li><li>Then set a different font for each platform specific for TargetType within this resource.<\/li><li>Finally, refer to this resource Static from view element.<\/li><\/ol>\n\n\n\n<p>For example, the text in the Label element, which refers to the style with the <strong>BoldFont <\/strong>x: Key attribute in the code snippet below, appears as Oswald-Bold on the Adroid platform and NunitoSans on the iOS platform.<\/p>\n\n\n\n<p>ContentPage codes:<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-markup\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;\n&lt;ContentPage xmlns=&quot;http:\/\/xamarin.com\/schemas\/2014\/forms&quot;\n             xmlns:x=&quot;http:\/\/schemas.microsoft.com\/winfx\/2009\/xaml&quot;\n             x:Class=&quot;Weather.View.FontsPage&quot;&gt;\n    &lt;Page.Resources&gt;\n        &lt;ResourceDictionary&gt;\n            &lt;Style TargetType=&quot;Label&quot;&gt;\n                &lt;Setter Property=&quot;FontSize&quot; Value=&quot;Large&quot;\/&gt;\n                &lt;Setter Property=&quot;HorizontalOptions&quot; Value=&quot;Center&quot;\/&gt;\n            &lt;\/Style&gt;\n\n            &lt;OnPlatform x:TypeArguments=&quot;x:String&quot; x:Key=&quot;BoldFont&quot;&gt;\n                &lt;On Platform=&quot;Android&quot; Value=&quot;Oswald-Bold.ttf#Oswald-Bold.ttf&quot; \/&gt;\n                &lt;On Platform=&quot;UWP&quot; Value=&quot;\/Resources\/NunitoSans-Bold.ttf#NunitoSans-Bold.ttf&quot; \/&gt;\n                &lt;On Platform=&quot;iOS&quot; Value=&quot;NunitoSans-Bold.ttf&quot; \/&gt;\n            &lt;\/OnPlatform&gt;\n            &lt;OnPlatform x:TypeArguments=&quot;x:String&quot; x:Key=&quot;NormalFont&quot;&gt;\n                &lt;On Platform=&quot;Android&quot; Value=&quot;Oswald-Regular.ttf#Oswald-Regular.ttf&quot; \/&gt;\n                &lt;On Platform=&quot;UWP&quot; Value=&quot;\/Resources\/NunitoSans-Regular.ttf&quot; \/&gt;\n                &lt;On Platform=&quot;iOS&quot; Value=&quot;NunitoSans-Regular.ttf&quot; \/&gt;\n            &lt;\/OnPlatform&gt;\n\n        &lt;\/ResourceDictionary&gt;\n    &lt;\/Page.Resources&gt;\n    &lt;ContentPage.Content&gt;\n        &lt;StackLayout  Margin=&quot;0,50,0,0&quot;&gt;\n            &lt;Label Text=&quot;Default Text&quot;\/&gt;\n            &lt;Label FontFamily=&quot;{StaticResource NormalFont}&quot; Text=&quot;Normal Text&quot;\/&gt;\n            &lt;Label FontFamily=&quot;{StaticResource BoldFont}&quot; Text=&quot;Bold Text&quot;\/&gt;\n        &lt;\/StackLayout&gt;\n    &lt;\/ContentPage.Content&gt;\n&lt;\/ContentPage&gt;<\/code><\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Platform-Specific-Custom-Font-473x1024.jpg\" alt=\"Xamarin.Forms Platform Specific Custom Font\" class=\"wp-image-3060\" width=\"237\" height=\"512\"\/><figcaption>Xamarin.Forms Platform Specific Custom Fonts<\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article, I explained the use of custom fonts in your Xamarin.Forms applications and how to use platform-specific font. I hope it was useful.<\/p>\n\n\n\n<p>If you\u2019re still not sure what to do, or if you got any errors, then I suggest you use the comment section below and let me know! I am here to help!<\/p>\n\n\n\n<p><strong>Also, share this blog post on social media and help more people learn.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, I will explain the use of custom fonts in your Xamarin.Forms applications and how to use platform-specific font. So, let\u2019s started. Follow the steps below in order. 1) Download the font(s) you want to use There are many sources you can download custom fonts to use in your applications. The most preferred &hellip;<\/p>\n","protected":false},"author":1,"featured_media":264,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[21,39],"tags":[4,5],"class_list":["post-3054","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-xamarin","category-xamarin-forms","tag-xamarin","tag-xamarin-forms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Xamarin.Forms Custom Font Family - Serkan Seker TR<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Xamarin.Forms Custom Font Family - Serkan Seker TR\" \/>\n<meta property=\"og:description\" content=\"In this article, I will explain the use of custom fonts in your Xamarin.Forms applications and how to use platform-specific font. So, let\u2019s started. Follow the steps below in order. 1) Download the font(s) you want to use There are many sources you can download custom fonts to use in your applications. The most preferred &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\" \/>\n<meta property=\"og:site_name\" content=\"Serkan Seker TR\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-16T10:15:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-22T07:15:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1\" \/>\n\t<meta property=\"og:image:height\" content=\"1\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"serkanadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"serkanadmin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\"},\"author\":{\"name\":\"serkanadmin\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"headline\":\"Xamarin.Forms Custom Font Family\",\"datePublished\":\"2021-02-16T10:15:12+00:00\",\"dateModified\":\"2021-02-22T07:15:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\"},\"wordCount\":617,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg\",\"keywords\":[\"xamarin\",\"xamarin.forms\"],\"articleSection\":[\"Xamarin\",\"Xamarin.Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\",\"url\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\",\"name\":\"Xamarin.Forms Custom Font Family - Serkan Seker TR\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg\",\"datePublished\":\"2021-02-16T10:15:12+00:00\",\"dateModified\":\"2021-02-22T07:15:23+00:00\",\"author\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"breadcrumb\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage\",\"url\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg\",\"contentUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/serkanseker.com\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Xamarin.Forms Custom Font Family\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\",\"url\":\"https:\/\/serkanseker.com\/tr\/\",\"name\":\"Serkan Seker TR\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/serkanseker.com\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\",\"name\":\"serkanadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"caption\":\"serkanadmin\"},\"sameAs\":[\"https:\/\/serkanseker.com\"],\"url\":\"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Xamarin.Forms Custom Font Family - Serkan Seker TR","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Xamarin.Forms Custom Font Family - Serkan Seker TR","og_description":"In this article, I will explain the use of custom fonts in your Xamarin.Forms applications and how to use platform-specific font. So, let\u2019s started. Follow the steps below in order. 1) Download the font(s) you want to use There are many sources you can download custom fonts to use in your applications. The most preferred &hellip;","og_url":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/","og_site_name":"Serkan Seker TR","article_published_time":"2021-02-16T10:15:12+00:00","article_modified_time":"2021-02-22T07:15:23+00:00","og_image":[{"url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg","width":1,"height":1,"type":"image\/jpeg"}],"author":"serkanadmin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"serkanadmin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#article","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/"},"author":{"name":"serkanadmin","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"headline":"Xamarin.Forms Custom Font Family","datePublished":"2021-02-16T10:15:12+00:00","dateModified":"2021-02-22T07:15:23+00:00","mainEntityOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/"},"wordCount":617,"commentCount":0,"image":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg","keywords":["xamarin","xamarin.forms"],"articleSection":["Xamarin","Xamarin.Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/","url":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/","name":"Xamarin.Forms Custom Font Family - Serkan Seker TR","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage"},"image":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg","datePublished":"2021-02-16T10:15:12+00:00","dateModified":"2021-02-22T07:15:23+00:00","author":{"@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"breadcrumb":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#primaryimage","url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg","contentUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2021\/02\/Xamarin-Forms-Custom-Font-Family-1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/serkanseker.com\/tr\/xamarin-forms-custom-font-family\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/serkanseker.com\/tr\/"},{"@type":"ListItem","position":2,"name":"Xamarin.Forms Custom Font Family"}]},{"@type":"WebSite","@id":"https:\/\/serkanseker.com\/tr\/#website","url":"https:\/\/serkanseker.com\/tr\/","name":"Serkan Seker TR","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/serkanseker.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5","name":"serkanadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","caption":"serkanadmin"},"sameAs":["https:\/\/serkanseker.com"],"url":"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/3054","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/comments?post=3054"}],"version-history":[{"count":0,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/3054\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media\/264"}],"wp:attachment":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media?parent=3054"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/categories?post=3054"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/tags?post=3054"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}