Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
React Native Articles
Page 3 of 3
How to show a checkbox in reactnative?
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 MoreHow to display Material Chip View in React Native?
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 MoreDifference Between React Native and React
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