expo / vector-icons

https://icons.expo.fyi
MIT License
647 stars 114 forks source link
expo icon-pack icons react-native

@expo/vector-icons

This library is a compatibility layer around @oblador/react-native-vector-icons to work with the Expo asset system. If you're using React Native without Expo, you have no need for this library -- carry on! (or maybe check out Expo).

šŸ‘€: this library does not provide access to react-native-vector-icon's Icon.getImageSource() function for generating images from icons at runtime (for context on why, see this issue). If you find yourself needing an icon in the form of an image rather than text, you should generate that image yourself and bundle it with your app.

Resources

Screenshot of website

Usage

This library is part of the expo package, so if you are using expo you can simply use it like so

import React from 'react';
import Ionicons from '@expo/vector-icons/Ionicons';

export default class IconExample extends React.Component {
  render() {
    return <Ionicons name='md-checkmark-circle' size={32} color='green' />;
  }
}

for more usage see Expo icons documentation

Maintainers

How to upgrade the react-native-vector-icons version

I'll be honest with you, it's not straightforward. You should set aside about an hour to do this.

  1. Clone react-native-vector-icons
  2. Copy files from the cloned directory into src/vendor/react-native-vector-icons, except the dotfiles.
  3. Run git status and look at the untracked files. Remove anything that doesn't seem needed. For example, remove package.json, react-native.config.js, react-native.osx.js. Things to look out for are new icon fonts or new create-* files.
  4. Run git diff **/*.js - do any of the changes look like they should be synced over to the equivalent .ts files in src?/
  1. Run yarn when you're done and it'll copy vendor files over to build.
  2. Go to the website directory, test it out by changing the @expo/vector-icons version to "../" (TODO: investigate this quirk!). If new icons were added, ensure that they work here.
  1. Publish an alpha release, switch back the version in the website to that version.
  2. Open a PR, have someone else like @brentvatne look at it. If it's good to go, publish the final version, update the website version again, then merge. The website will be deployed when you merge to master.

How to deploy the website

Create a commit on master.