UNPKG

3.56 kBMarkdownView Raw
1# @expo/vector-icons
2
3This library is a compatibility layer around [@oblador/react-native-vector-icons](https://github.com/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](https://expo.dev/)).
4
5> 👀: 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](https://github.com/expo/vector-icons/issues/26)). 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.
6
7## Resources
8
9- [@expo/vector-icons directory](https://icons.expo.fyi/) - a searchable list of all included icons.
10- [Font Awesome icons directory](https://fontawesome.com/icons) - all Font Awesome icons (including the Pro icons)
11- [Expo documentation](https://docs.expo.dev/)
12
13![Screenshot of website](.github/assets/website-screenshot.png)
14
15## Usage
16
17This library is part of the `expo` package, so if you are using `expo` you can simply use it like so
18
19```tsx
20import React from 'react';
21import Ionicons from '@expo/vector-icons/Ionicons';
22
23export default class IconExample extends React.Component {
24 render() {
25 return <Ionicons name='md-checkmark-circle' size={32} color='green' />;
26 }
27}
28```
29
30for more usage see [Expo icons documentation](https://docs.expo.io/guides/icons/)
31
32## Maintainers
33
34### How to upgrade the react-native-vector-icons version
35
36I'll be honest with you, it's not straightforward. You should set aside about an hour to do this.
37
381. Clone [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons)
392. Copy files from the cloned directory into `src/vendor/react-native-vector-icons`, except the dotfiles.
403. 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.
414. Run `git diff **/*.js` - do any of the changes look like they should be synced over to the equivalent `.ts` files in `src`?/
42
43- ToolBarAndroid and TabBarIOS are not included in @expo/vector-icons
44- Neither are the native vendor font loading or image source related methods.
45- Probably there won't be anything important. The main thing to look out for are user-facing API changes, the `@expo/vector-icons` internals are different enough that you don't need to worry about it.
46- Were any dependencies added? Check imports against those in the current package.json, see why they were added - maybe they support the `bin` scripts, in which case we need them.
47- TypeScript/Flow types for Icon/Icon.Button components may need to be updated.
48
495. Run `yarn` when you're done and it'll copy vendor files over to build.
506. 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.
51
52- While you're here, it would be kind of you to update the Expo SDK version to latest.
53
547. Publish an alpha release, switch back the version in the website to that version.
558. 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.
56
57### How to deploy the website
58
59Create a commit on master.