React Native

React Native – Card View

In this tutorial we are going to see how we can Card View using Card Component provided by the React Native elements. For this example, we are using Card component provided by react-native-elements

Run the following commands for installations.

npm install react-native-elements --save
npm install react-native-vector-icons --save

After that we have to link the dependency.

react-native link react-native-vector-icons

After that we have to write the below codes in App.js

App.js

import React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { Card } from 'react-native-elements';
export default class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <Card title="Card Component">
          <Text style={styles.paragraph}>
            This is a card from the react-native-elements
          </Text>
        </Card>
      </View>
    );
  }
}
const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'flex-start',
    paddingTop: 40,
    backgroundColor: '#ccc',
  },
  paragraph: {
    margin: 24,
    fontSize: 18,
    fontWeight: 'bold',
    textAlign: 'center',
    color: '#34495e',
  },
});

Shaiv Roy

Hy Myself shaiv roy, I am a passionate blogger and love to share ideas among people, I am having good experience with laravel, vue js, react, flutter and doing website and app development work from last 7 years.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button