Is React-Native the best choice for mobile app development?
| |

Is React-Native the best choice for mobile app development?

Here’s a controversial question about React-Native: Is React-Native the best choice for mobile app development, or are native mobile app development platforms (such as Android’s Java and Kotlin or iOS’s Swift) a better choice in the long run? This is a controversial topic because there are strong arguments to be made for both sides. Some people argue that native mobile app development platforms offer the best performance and user experience, while others argue that React-Native’s cross-platform capabilities and faster development cycle make it the better choice in most cases. What do you think?

|

How to add custom fonts in react native 60+

Create a file in your react native project called react-native.config.js:In it, paste assets: [‘./src/assets/fonts/’], should be the path to wherever you stored your custom fonts in your project folder.When you run the link command, it should work then. It is very important to use with the full name of the file without extension https://github.com/facebook/react-native/issues/25852#issuecomment-567279869