1.0.1 • Published 3 years ago

react-native-steam-card v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-native-steam-card

Demo in android

image

Getting started

$ npm install react-native-steam-card --save

or

$ yarn add react-native-steam-card

Mostly automatic installation

$ react-native link react-native-steam-card

Usage

import React from 'react';
import type {Node} from 'react';
import { StyleSheet, View } from 'react-native';
import SteamCard from 'react-native-steam-card';

// TODO: What to do with the module?
const App: () => Node = () => {

  return (
    <View style={styles.container}>
      <SteamCard 
        source={require("./asset/island.png")}
        ratio={0.65}
      />
    </View>
  );
};

const styles = StyleSheet.create({
    container: {
      flex: 1,
      alignItems: 'center',
      justifyContent: 'center',
      borderColor: 'rgba(23,41,48,1)',
  },
});

export default App;

Configurable props

PropertyTypeDefaultDescription
sourceImageSourceMustSource of image.
ratioNumber0.8The scale value of image inside the view when hovering.
styleView.style-Style of image.