How to Create Horizontal Progress Bar in React Native (Android Only)

As you know, the ActivityIndicator component of React Native is round in shape and not horizontal. If you need a horizontal progress bar in your React Native Android app then you should use ProgressBarAndroid component. The ProgressBarAndroid component should be installed from react native community using any of the following commands. or For iOS, run…

How to Create a Picker Component with Prompt Message in React Native

If you want to create a picker component with a prompt message in React Native then this is the right place to look for. The Picker component will be removed from react native core and hence install Picker from react native community using the following command. or For iOS users, execute the following command too….

How to Disable Picker Component in React Native

The Picker component is a controlled component, which means that the user’s selection is controlled by the React Native component. Sometimes, you may need to disable the picker component to avoid any further actions related to the same. In order to disable the Picker component in React Native you just need to use its enabled…

How to Change Default Letter Spacing of Text Component in React Native

Sometimes, adjusting the letter spacing of text in your React Native app can enhance its visual appeal. In this tutorial, let’s learn how to change the default letter spacing of a text component in React Native. Changing the letter space is so easy and you can do that by tweaking the style of the Text…

How to ask Permissions for Android in React Native

Post Android Lollipop OS, you need to ask for running permissions to access the camera, location, external memory, etc. This React Native tutorial will help you how to ask for running permissions in React Native. Here, you should use PermissionsAndroid API from React Native. There are two types of permissions- normal and dangerous. Normal permissions…

How to Make TextInput not Editable in React Native

Sometimes, you might need TextInput which can’t be edited by the user. In that case, TextInput should be made not editable with editable prop. Let’s check how to make TextInput noneditable in react native. Go through the code below where I made TextInput not editable. As you noticed, here I used editable={false} to make the TextInput not…