Last active
January 21, 2020 10:33
-
-
Save davidmigloz/e2f01c4c5c4d6231733861c2f8af9808 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<font-family xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto"> | |
<!-- Regular --> | |
<font | |
app:font="@font/my_custom_font_regular" | |
app:fontStyle="normal" | |
app:fontWeight="400" /> | |
<!-- Italic --> | |
<font | |
app:font="@font/my_custom_font_italic" | |
app:fontStyle="italic" | |
app:fontWeight="400" /> | |
<!-- Bold --> | |
<font | |
app:font="@font/my_custom_font_bold" | |
app:fontStyle="normal" | |
app:fontWeight="700" /> | |
</font-family> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment