React Native Articles

Page 3 of 3

How to show a checkbox in reactnative?

Shilpa S
Shilpa S
Updated on 15-Mar-2026 3K+ Views

Checkboxes are a common component that we often use in mobile UI. React Native provides several ways of implementing checkboxes in your applications. The core React Native package does not include checkbox support, so you need to install a third-party package to work with it. Installation The following package needs to be installed to display checkboxes: npm install react-native-paper Basic Checkbox Component The basic checkbox component structure is as follows: Important Properties Let us explore the important properties available for the checkbox component: ...

Read More

How to display Material Chip View in React Native?

Shilpa S
Shilpa S
Updated on 15-Mar-2026 965 Views

To display chips in the UI, we are going to make use of React Native Paper Material Design. Chips are compact elements that represent input, attribute, or action. Installation Install react native paper as shown below − npm install react-native-paper Basic Syntax The basic chip component structure is as follows − Chip Name Properties The basic properties of chip are as follows − ...

Read More

Difference Between React Native and React

Samir Bhimbha
Samir Bhimbha
Updated on 06-Dec-2024 283 Views

React is a well-known JavaScript library mostly used to build dynamic and interactive user interface applications for the web. It is a creation of Facebook, which lets developers create reusable UI components and also provides a virtual DOM on which rendering is to be done. React Native is a new concept that applies the logic of React to developing mobile applications. That means developers can write mobile apps for both iOS and Android operating systems. Using React Native, one would get identical compiling with a single codebase. Using native components instead of elements from the web gives a real ...

Read More
Showing 21–23 of 23 articles
« Prev 1 2 3 Next »
Advertisements