Android react-native app not picking up font
up vote
3
down vote
favorite
I am trying to use a font "Verveine Corp Regular' inside my react-native app.
The font works in the iOS build, but not in the Android build.
The font is in .tff format and is placed in the root of my work (linked in the package.json and I have run react-native link) and inside "android/gradle/src/main/assets/fonts" but it's still not picking the font up. I have also cleaned and rebuilt the app multiple times.
When inspecting an element which uses the font in the android debugger, it says it's using the font. But the font is still the default font.
Could anyone offer some help or guidance on this issue?
Thanks!
android ios reactjs fonts react-native
|
show 4 more comments
up vote
3
down vote
favorite
I am trying to use a font "Verveine Corp Regular' inside my react-native app.
The font works in the iOS build, but not in the Android build.
The font is in .tff format and is placed in the root of my work (linked in the package.json and I have run react-native link) and inside "android/gradle/src/main/assets/fonts" but it's still not picking the font up. I have also cleaned and rebuilt the app multiple times.
When inspecting an element which uses the font in the android debugger, it says it's using the font. But the font is still the default font.
Could anyone offer some help or guidance on this issue?
Thanks!
android ios reactjs fonts react-native
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
@arjun like what?
– Jake K
Mar 2 '17 at 12:54
|
show 4 more comments
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am trying to use a font "Verveine Corp Regular' inside my react-native app.
The font works in the iOS build, but not in the Android build.
The font is in .tff format and is placed in the root of my work (linked in the package.json and I have run react-native link) and inside "android/gradle/src/main/assets/fonts" but it's still not picking the font up. I have also cleaned and rebuilt the app multiple times.
When inspecting an element which uses the font in the android debugger, it says it's using the font. But the font is still the default font.
Could anyone offer some help or guidance on this issue?
Thanks!
android ios reactjs fonts react-native
I am trying to use a font "Verveine Corp Regular' inside my react-native app.
The font works in the iOS build, but not in the Android build.
The font is in .tff format and is placed in the root of my work (linked in the package.json and I have run react-native link) and inside "android/gradle/src/main/assets/fonts" but it's still not picking the font up. I have also cleaned and rebuilt the app multiple times.
When inspecting an element which uses the font in the android debugger, it says it's using the font. But the font is still the default font.
Could anyone offer some help or guidance on this issue?
Thanks!
android ios reactjs fonts react-native
android ios reactjs fonts react-native
edited Mar 2 '17 at 12:49
asked Mar 2 '17 at 12:17
Jake K
256
256
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
@arjun like what?
– Jake K
Mar 2 '17 at 12:54
|
show 4 more comments
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
@arjun like what?
– Jake K
Mar 2 '17 at 12:54
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
@arjun like what?
– Jake K
Mar 2 '17 at 12:54
@arjun like what?
– Jake K
Mar 2 '17 at 12:54
|
show 4 more comments
5 Answers
5
active
oldest
votes
up vote
2
down vote
accepted
This is how I used custom font in my project
//sampleStyle.js
import overrideStyles from '/sampleoverridestyles';
iconTextStyle: {
color: '#FFFFFF',
fontSize: 16
}
//sampleoverridestyles.ios.js
export default {
iconTextStyle: {
fontFamily: 'FaktSoftPro-Medium'
}
}
//sampleoverridestyles.android.js
export default {
iconTextStyle: {
fontFamily: 'faktsoftpro_medium'
}
}
since I cannot set the font name same for iOS and android I have overridden it as above and it worked.
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
add a comment |
up vote
1
down vote
First, make sure you are up to version 0.16+ with react-native.
Your fonts should be *.ttf or *.otf files and must be located in: /projectname/android/app/src/main/assets/fonts
Make sure the fonts are lowercase only and follow this pattern: fontname.ttf, fontname_bold.ttf, fontname_light.ttf, fontname_bold_italic.ttf
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
Have you defined another font in your AppTheme (styles.xml), that overrides your preferred font?
Have you tested your font with a "Hello World"-App as a minimal test?
Have you implemented your ttf as shown here for example?: How to use custom font in Android Studio
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
add a comment |
up vote
1
down vote
I added font in react-native android from here:
https://medium.com/@gattermeier/custom-fonts-in-react-native-for-android-b8a331a7d2a7#.40vw3ooar
Follow all the steps it will work fine.
After adding run react-native run-android
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
0
down vote
The other answers helped me get this working for me, thank you. This manuever is probably only necessary when the font has capital letters in the filename. A more complete answer:
Add the font as normal in react native, for example:
{react-native-project}/fonts/GovtAgentBB.ttf
Run react-native link and this will put the font in
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB.ttf
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB_ital.ttf
But android, bring robotic and not human, doesn't like this. So rename the file with all lower case letters and an underscore before the variant, like:
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb.ttf
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb_ital.ttf
Then, you have to change the font name in the style depending on the platform. For iOS, use the human name that is the name of the font that would be displaying in the title of the window of the Mac Font menu (or just the name you see on the web). For android, you have to, robotically, use the name of the file you just renamed.
{Platform.OS === 'ios' ? (
<Text style={styles.welcome}>
Hello World!
</Text>
) : (
<Text style={styles.welcomeAndroid}>
Hello World
</Text>
)}
const styles = StyleSheet.create({
...
welcome: {
fontFamily: 'Government Agent BB',
},
welcomeAndroid: {
fontFamily: 'govtagentbb',
},
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
This is how I used custom font in my project
//sampleStyle.js
import overrideStyles from '/sampleoverridestyles';
iconTextStyle: {
color: '#FFFFFF',
fontSize: 16
}
//sampleoverridestyles.ios.js
export default {
iconTextStyle: {
fontFamily: 'FaktSoftPro-Medium'
}
}
//sampleoverridestyles.android.js
export default {
iconTextStyle: {
fontFamily: 'faktsoftpro_medium'
}
}
since I cannot set the font name same for iOS and android I have overridden it as above and it worked.
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
add a comment |
up vote
2
down vote
accepted
This is how I used custom font in my project
//sampleStyle.js
import overrideStyles from '/sampleoverridestyles';
iconTextStyle: {
color: '#FFFFFF',
fontSize: 16
}
//sampleoverridestyles.ios.js
export default {
iconTextStyle: {
fontFamily: 'FaktSoftPro-Medium'
}
}
//sampleoverridestyles.android.js
export default {
iconTextStyle: {
fontFamily: 'faktsoftpro_medium'
}
}
since I cannot set the font name same for iOS and android I have overridden it as above and it worked.
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
This is how I used custom font in my project
//sampleStyle.js
import overrideStyles from '/sampleoverridestyles';
iconTextStyle: {
color: '#FFFFFF',
fontSize: 16
}
//sampleoverridestyles.ios.js
export default {
iconTextStyle: {
fontFamily: 'FaktSoftPro-Medium'
}
}
//sampleoverridestyles.android.js
export default {
iconTextStyle: {
fontFamily: 'faktsoftpro_medium'
}
}
since I cannot set the font name same for iOS and android I have overridden it as above and it worked.
This is how I used custom font in my project
//sampleStyle.js
import overrideStyles from '/sampleoverridestyles';
iconTextStyle: {
color: '#FFFFFF',
fontSize: 16
}
//sampleoverridestyles.ios.js
export default {
iconTextStyle: {
fontFamily: 'FaktSoftPro-Medium'
}
}
//sampleoverridestyles.android.js
export default {
iconTextStyle: {
fontFamily: 'faktsoftpro_medium'
}
}
since I cannot set the font name same for iOS and android I have overridden it as above and it worked.
answered Mar 2 '17 at 13:08
arjun
1,99611428
1,99611428
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
add a comment |
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
Are these files in the root of your project?
– Jake K
Mar 2 '17 at 13:34
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
my directory structure is like src/modules/mymodule/sytles/..
– arjun
Mar 2 '17 at 13:50
add a comment |
up vote
1
down vote
First, make sure you are up to version 0.16+ with react-native.
Your fonts should be *.ttf or *.otf files and must be located in: /projectname/android/app/src/main/assets/fonts
Make sure the fonts are lowercase only and follow this pattern: fontname.ttf, fontname_bold.ttf, fontname_light.ttf, fontname_bold_italic.ttf
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
First, make sure you are up to version 0.16+ with react-native.
Your fonts should be *.ttf or *.otf files and must be located in: /projectname/android/app/src/main/assets/fonts
Make sure the fonts are lowercase only and follow this pattern: fontname.ttf, fontname_bold.ttf, fontname_light.ttf, fontname_bold_italic.ttf
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
up vote
1
down vote
First, make sure you are up to version 0.16+ with react-native.
Your fonts should be *.ttf or *.otf files and must be located in: /projectname/android/app/src/main/assets/fonts
Make sure the fonts are lowercase only and follow this pattern: fontname.ttf, fontname_bold.ttf, fontname_light.ttf, fontname_bold_italic.ttf
First, make sure you are up to version 0.16+ with react-native.
Your fonts should be *.ttf or *.otf files and must be located in: /projectname/android/app/src/main/assets/fonts
Make sure the fonts are lowercase only and follow this pattern: fontname.ttf, fontname_bold.ttf, fontname_light.ttf, fontname_bold_italic.ttf
answered Mar 2 '17 at 12:23
Nitesh Mishra
459112
459112
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
add a comment |
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
Tried all of these :( The fonts were in uppercase, but I have changed them to lowercase.. still no luck.
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
Have you defined another font in your AppTheme (styles.xml), that overrides your preferred font?
Have you tested your font with a "Hello World"-App as a minimal test?
Have you implemented your ttf as shown here for example?: How to use custom font in Android Studio
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
add a comment |
up vote
1
down vote
Have you defined another font in your AppTheme (styles.xml), that overrides your preferred font?
Have you tested your font with a "Hello World"-App as a minimal test?
Have you implemented your ttf as shown here for example?: How to use custom font in Android Studio
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
add a comment |
up vote
1
down vote
up vote
1
down vote
Have you defined another font in your AppTheme (styles.xml), that overrides your preferred font?
Have you tested your font with a "Hello World"-App as a minimal test?
Have you implemented your ttf as shown here for example?: How to use custom font in Android Studio
Have you defined another font in your AppTheme (styles.xml), that overrides your preferred font?
Have you tested your font with a "Hello World"-App as a minimal test?
Have you implemented your ttf as shown here for example?: How to use custom font in Android Studio
edited May 23 '17 at 10:29
Community♦
11
11
answered Mar 2 '17 at 12:27
tigercode
476
476
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
add a comment |
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
Yep, I have just tried all these but nothing. When I inspect the element in the android debugger, it says the element is using the font I want it to. But the element is still displaying as the default font.
– Jake K
Mar 2 '17 at 12:38
add a comment |
up vote
1
down vote
I added font in react-native android from here:
https://medium.com/@gattermeier/custom-fonts-in-react-native-for-android-b8a331a7d2a7#.40vw3ooar
Follow all the steps it will work fine.
After adding run react-native run-android
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
I added font in react-native android from here:
https://medium.com/@gattermeier/custom-fonts-in-react-native-for-android-b8a331a7d2a7#.40vw3ooar
Follow all the steps it will work fine.
After adding run react-native run-android
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
1
down vote
up vote
1
down vote
I added font in react-native android from here:
https://medium.com/@gattermeier/custom-fonts-in-react-native-for-android-b8a331a7d2a7#.40vw3ooar
Follow all the steps it will work fine.
After adding run react-native run-android
I added font in react-native android from here:
https://medium.com/@gattermeier/custom-fonts-in-react-native-for-android-b8a331a7d2a7#.40vw3ooar
Follow all the steps it will work fine.
After adding run react-native run-android
answered Mar 2 '17 at 12:32
Ankush Rishi
62421135
62421135
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
add a comment |
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
I followed the same tutorial but to no aveil
– Jake K
Mar 2 '17 at 12:37
add a comment |
up vote
0
down vote
The other answers helped me get this working for me, thank you. This manuever is probably only necessary when the font has capital letters in the filename. A more complete answer:
Add the font as normal in react native, for example:
{react-native-project}/fonts/GovtAgentBB.ttf
Run react-native link and this will put the font in
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB.ttf
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB_ital.ttf
But android, bring robotic and not human, doesn't like this. So rename the file with all lower case letters and an underscore before the variant, like:
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb.ttf
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb_ital.ttf
Then, you have to change the font name in the style depending on the platform. For iOS, use the human name that is the name of the font that would be displaying in the title of the window of the Mac Font menu (or just the name you see on the web). For android, you have to, robotically, use the name of the file you just renamed.
{Platform.OS === 'ios' ? (
<Text style={styles.welcome}>
Hello World!
</Text>
) : (
<Text style={styles.welcomeAndroid}>
Hello World
</Text>
)}
const styles = StyleSheet.create({
...
welcome: {
fontFamily: 'Government Agent BB',
},
welcomeAndroid: {
fontFamily: 'govtagentbb',
},
add a comment |
up vote
0
down vote
The other answers helped me get this working for me, thank you. This manuever is probably only necessary when the font has capital letters in the filename. A more complete answer:
Add the font as normal in react native, for example:
{react-native-project}/fonts/GovtAgentBB.ttf
Run react-native link and this will put the font in
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB.ttf
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB_ital.ttf
But android, bring robotic and not human, doesn't like this. So rename the file with all lower case letters and an underscore before the variant, like:
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb.ttf
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb_ital.ttf
Then, you have to change the font name in the style depending on the platform. For iOS, use the human name that is the name of the font that would be displaying in the title of the window of the Mac Font menu (or just the name you see on the web). For android, you have to, robotically, use the name of the file you just renamed.
{Platform.OS === 'ios' ? (
<Text style={styles.welcome}>
Hello World!
</Text>
) : (
<Text style={styles.welcomeAndroid}>
Hello World
</Text>
)}
const styles = StyleSheet.create({
...
welcome: {
fontFamily: 'Government Agent BB',
},
welcomeAndroid: {
fontFamily: 'govtagentbb',
},
add a comment |
up vote
0
down vote
up vote
0
down vote
The other answers helped me get this working for me, thank you. This manuever is probably only necessary when the font has capital letters in the filename. A more complete answer:
Add the font as normal in react native, for example:
{react-native-project}/fonts/GovtAgentBB.ttf
Run react-native link and this will put the font in
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB.ttf
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB_ital.ttf
But android, bring robotic and not human, doesn't like this. So rename the file with all lower case letters and an underscore before the variant, like:
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb.ttf
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb_ital.ttf
Then, you have to change the font name in the style depending on the platform. For iOS, use the human name that is the name of the font that would be displaying in the title of the window of the Mac Font menu (or just the name you see on the web). For android, you have to, robotically, use the name of the file you just renamed.
{Platform.OS === 'ios' ? (
<Text style={styles.welcome}>
Hello World!
</Text>
) : (
<Text style={styles.welcomeAndroid}>
Hello World
</Text>
)}
const styles = StyleSheet.create({
...
welcome: {
fontFamily: 'Government Agent BB',
},
welcomeAndroid: {
fontFamily: 'govtagentbb',
},
The other answers helped me get this working for me, thank you. This manuever is probably only necessary when the font has capital letters in the filename. A more complete answer:
Add the font as normal in react native, for example:
{react-native-project}/fonts/GovtAgentBB.ttf
Run react-native link and this will put the font in
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB.ttf
{react-native-project}/android/app/src/main/assets/fonts/GovtAgentBB_ital.ttf
But android, bring robotic and not human, doesn't like this. So rename the file with all lower case letters and an underscore before the variant, like:
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb.ttf
{react-native-project}/android/app/src/main/assets/fonts/govtagentbb_ital.ttf
Then, you have to change the font name in the style depending on the platform. For iOS, use the human name that is the name of the font that would be displaying in the title of the window of the Mac Font menu (or just the name you see on the web). For android, you have to, robotically, use the name of the file you just renamed.
{Platform.OS === 'ios' ? (
<Text style={styles.welcome}>
Hello World!
</Text>
) : (
<Text style={styles.welcomeAndroid}>
Hello World
</Text>
)}
const styles = StyleSheet.create({
...
welcome: {
fontFamily: 'Government Agent BB',
},
welcomeAndroid: {
fontFamily: 'govtagentbb',
},
answered Nov 11 at 0:45
Michael Bushe
655713
655713
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f42555315%2fandroid-react-native-app-not-picking-up-font%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Show us the package.json
– vinayr
Mar 2 '17 at 12:23
"rnpm": { "assets": [ "fonts" ] }
– Jake K
Mar 2 '17 at 12:24
When I inspect the elements that are meant to use the font in the android debugger it says the element is using the font I want it to use. It's just not displaying in that font, just the default.
– Jake K
Mar 2 '17 at 12:37
add some code where you use the custom font
– arjun
Mar 2 '17 at 12:52
@arjun like what?
– Jake K
Mar 2 '17 at 12:54