FuYaoDe / react-native-app-intro

react-native-app-intro is a react native component implementing a parallax effect welcome page using base on react-native-swiper , similar to the one found in Google's app like Sheet, Drive, Docs...
MIT License
3.24k stars 508 forks source link

Error on app launch #100

Open dfavaro opened 6 years ago

dfavaro commented 6 years ago

Hi, I got this error when app is launched:

fontFamily 'Arial' is not a system font and has not been loaded through Expo.Font.loadAsync.
If you intended to use a system font, make sure you typed the name correctly and that it is supported by your device operating system.

If I press back, app-intro works correctly.

Pierre-Green commented 6 years ago

Hello did you found how to fix this error ?

aforty commented 6 years ago

You can override it.

<AppIntro customStyles={{ nextButtonText: { fontFamily: 'Some Other Font Family' } }} ... />

Pierre-Green commented 6 years ago

Thx !!!