react-native

react

3 ways to detect if Keyboard is opened or closed in React Native

Learn how to check if the keyboard is opened or closed in React Native for both Android and iOS. I will show you three ways in this post.

Read
react

How to hide the keyboard in React Native on tapping outside of TextInput

Learn how to hide the keyboard in React Native if user taps outside of a TextInput with example. This post will show how to use a ScrollView and how to use the Keyboard module.

Read
react

How to change the text size of TextInput in React Native

Learn to change the text size of TextInput component of React Native. We will create one react native project and change the font size of a given TextInput.

Read
react

3 ways to create platform-specific designs in React Native

Learn how to create platform-specific designs in React Native in 3 different ways. This post will show you how to create platform-specific designs with examples.

Read
react

How to use SVG or vector images in React native

How to use svg images in React native. This post will show you different ways to use SVG or vector images in a react native project.

Read
react

How to read platform-specific values in React Native

Learn how to access platform specific data in React native using Platform API. Platform API has may properties available for Android and iOS devices.

Read
react

How to change the background color of a View dynamically in React Native

How to change the background color of a View dynamically in React Native. We will create one React Native project to change the view background color dynamically.

Read
react

How to add scroll to top to a FlatList in ReactNative app

Scroll to top is a convenient way to show users to scroll to the top of a list. This post will show you how to add scroll to top in Flatlist in react native.

Read
react

How to show pdf files in react native applications

In this tutorial, we will learn how to load a pdf file from remote cloud storage and how to show it in a react native app.

Read
react

Handling keyboard with react-native ScrollView

Learn how to handle keyboard with react-native ScrollView.keyboardDismissMode and keyboardShouldPersistTaps are two properties used for keyboard handling.

Read