Skip to content

All topics  /  React Native

React Native Material Outline Chip Example

React Native

When “React Native Material Outline Chip Example” moves through design, development and browser testing, hybrid work schedule examples benefits challenges strategies can clarify hand-offs and time spent on revisions while leaving code quality, accessibility and released behaviour as the real measures of success.

For API changes, browser support and current usage patterns, compare the snippet with the React Native project before adopting it in production.

Nov 09, 2020

Hi Guys,

In this blog, I will explain you how to create material ui outline chip in react native. You can easily create material ui outline chip in react native. First i will import stylesheet namespace from react-native-paper, after I will make material ui outline chip using in react native.

Here, I will give you full example for simply display material ui outline chip using react native as bellow.

material ui outline chip example in react native,material ui outline chip react native,material ui outline chip app react native,material ui outline chip app in react native, react native material ui outline chip example, react native material ui outline chip

Step 1 - Create project


In the first step Run the following command for create project.

expo init MaterialUIOutlineChip 

Step 2 - Install Package

In the step,I will install npm i react-native-material-outline chip package .

npm install --save react-native-material-outline chip

Step 3 - App.js

In this step, You will open App.js file and put the code.

import * as React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { Chip } from 'react-native-paper';
const ChipExample = () => {
  return (
    <View style={styles.view}>
      <Chip icon="cricket" style={styles.cricket} mode={'outlined'}>Cricket</Chip>
      <Chip icon="hockey-sticks" style={styles.hockey} mode={'outlined'}>Hockey</Chip>
      <Chip icon="baseball" style={styles.baseball} mode={'outlined'}>Baseball</Chip>
      <Chip icon="basketball" style={styles.basketball} mode={'outlined'}>Basketball</Chip>
    </View>
  );
};
export default ChipExample;
const styles = StyleSheet.create({
  view: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  cricket: {
    width : 110,
    marginBottom:15,
    borderColor: '#8a2be2',
    borderWidth: 1
  },
  hockey: {
    width : 110,
    marginBottom:15,
    borderColor: '#dc143c',
    borderWidth: 1
  },
  baseball: {
    width : 110,
    marginBottom:15,
    borderColor: '#8b008b',
    borderWidth: 1
  },
  basketball: {
    width : 110,
    borderColor: '#800000',
    borderWidth: 1
  }
});

Step 4 - Run project

In the last step run your project using bellow command.

npm start

Output

It will help you...