React Native Material UI Badge Example

04-Apr-2023

.

Admin

React Native Material UI Badge Example

Hi Guys,

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

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

Step 1 - Create project


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

expo init materialuibadge

Step 2 - Install Package

In the step,I will install npm i react-native-paper package .

npm i react-native-paper

Step 3 - App.js

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

import * as React from 'react';

import { Badge } from 'react-native-paper';

import { View,StyleSheet } from 'react-native';

const BadgeDemo = () => {

return (

<View style={styles.view}>

<Badge size={50} style={styles.small}>10</Badge>

<Badge size={50} style={styles.medium}>50</Badge>

<Badge size={50} style={styles.large}>100</Badge>

</View>

);

};

export default BadgeDemo;

const styles = StyleSheet.create ({

view: {

flexDirection: "row",

marginTop : 250,

marginLeft : 40

},

small: {

marginRight : 50,

backgroundColor : 'crimson'

},

medium: {

marginRight : 50,

backgroundColor : 'darkolivegreen'

},

large: {

backgroundColor : 'maroon'

}

})

Step 4 - Run project

In the last step run your project using bellow command.

npm start

Output

It will help you...

#React Native