2.0.3 • Published 9 months ago

@bhavberi/react-native-user-avatar v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

React Native User Avatar

npm version npm downloads Build Status

Coverage lines Coverage functions Coverage branches Coverage statements

A bare-bones user avatar display with support for falling back to using the user's initials on a colored background as the avatar. Based on the great library for React: https://github.com/wbinnssmith/react-user-avatar, and ported to React Native.

iOS ScreenshotAndroid Screenshot

Installation

npm install --save @bhavberi/react-native-user-avatar or yarn add @bhavberi/react-native-user-avatar

Usage

The fallback avatar's color may be set by passing in the bgColor prop, or you can customize the range of colors used by passing in an array of bgColors. The component uses a simple calculation to consistently use the same color for the same user's name every time.

UserAvatar Component

import UserAvatar from '@bhavberi/react-native-user-avatar';

const App: () => React$Node = () => {
  return (
    <>
    ...
    <View>
      <UserAvatar size={100} name="Bhav Beri" />
      <UserAvatar size={100} name="Bhav Beri" src="https://dummyimage.com/100x100/000/fff" />
      <UserAvatar size={50} name="Bhav Beri" bgColors={['#ccc', '#fafafa', '#ccaabb']}/>
      <UserAvatar size={50} name="Bhav Beri" />
      <UserAvatar size={50} name="Bhav Beri" bgColor="#000" />
    </View>
    ...

UserAvatar Props

AttributeTypeDefault ValueDescription
namestring'Bhav Beri'name used for generating initials
srcstringundefinedsource image on the internet to display
bgColorstringundefinedcustom background color for the initials
bgColorsarraysee index.jscustom array of background colors to choose from
textColorstring'#fff'custom text color for the initials font
sizenumber32custom size that defines both the avatar and the initials font size
imageStyleobjectundefinedcustom image styling to append to the Image component displays the source image
textStyleobjectundefinedcustom text styling to append to the Text component that displays initials
styleobjectundefinedcustom style to append to the UserAvatar component container
borderRadiusnumbersize * 0.5custom border radius for the component
componentReact.Componentundefinedcustom component to display instead of initials or source image
ignoreImageTypeCheckbooleanfalseignore image type check in content-type header when src is provided.

Contributing

Contributions are welcome. Please see CONTRIBUTING.md if you like to contribute to this library.

Credits

@wbinnssmith for creating https://github.com/wbinnssmith/react-user-avatar

This is a fork from https://github.com/avishayil/react-native-user-avatar with some improvements.

License

MIT

2.0.3

9 months ago

2.0.2

10 months ago

2.0.1

10 months ago

2.0.0

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.9

10 months ago