Skip to content

lwhiteley/react-native-gravatar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-gravatar

Install

npm install --save react-native-gravatar

Use

eg.

import React, { Component } from 'react';
import {StyleSheet} from 'react-native';
import {Gravatar, GravatarApi} from 'react-native-gravatar';

class MyComponent extends Component {
	render() {

		return (
      <View >
        <Gravatar options={{
              email: 'example@gmail.com',
              parameters: { "size": "200", "d": "mm" },
              secure: true
            }}
            style={styles.roundedProfileImage} />
      </View>
    )
  }
}

var styles = StyleSheet.create({
  roundedProfileImage: {
    width:100, height:100, borderWidth:3,
    borderColor:'white', borderRadius:50
  }
})

For a better idea of what options can be passed, please view gravatar-api

Notes

  • pull requests are welcome

Releases

No releases published

Packages

No packages published