@native-base/icons
v0.0.11
Published
## **Table of Contents**
Downloads
2,710
Maintainers
Keywords
Readme
@native-base/icons
Table of Contents
- About The Project
- Built With
- Installation
- Usage
- Contributing
About the project
This project was designed to make integration of icons in nativebase projects easier. It is a unified library which export icons and fonts for all the native and web platforms.
Built With
- react-native-vector-icons
- @expo/vector-icon
- typescript
Installation
yarn add @native-base/icons
Next Js:
Add Fonts:
- To add all the fonts, write this piece of code in
_document.js
import { default as NativebaseDocument } from "@native-base/next-adapter/document"; import fontsCSS from "@native-base/icons/FontsCSS" import { AppRegistry } from "react-native"; import { Main } from "next/document"; import * as React from "react"; class Document extends NativebaseDocument { // } async function getInitialProps({ renderPage }) { AppRegistry.registerComponent("Main", () => Main); const { getStyleElement } = AppRegistry.getApplication("Main"); const page = await renderPage(); const styles = [ // eslint-disable-next-line react/jsx-key <style dangerouslySetInnerHTML={{ __html: fontsCSS }} />, getStyleElement(), ]; return { ...page, styles: React.Children.toArray(styles) }; } Document.getInitialProps = getInitialProps; export default Document;
- To add particular fonts: (For example, if you need to add AntDesignFonts and MaterialIconsFonts, write this piece of code in
_document.js
)
import { default as NativebaseDocument } from "@native-base/next-adapter/document"; import AntDesignFontFaceCSS from "@native-base/icons/FontsCSS/AntDesignFontFaceCSS"; import MaterialIconsFontFaceCSS from "@native-base/icons/FontsCSS/MaterialIconsFontFaceCSS"; const fontsCSS = AntDesignFontFaceCSS + MaterialIconsFontFaceCSS; class Document extends NativebaseDocument { // } async function getInitialProps({ renderPage }) { const res = await NativebaseDocument.getInitialProps({ renderPage }); const styles = [ // eslint-disable-next-line react/jsx-key <style dangerouslySetInnerHTML={{ __html: fontsCSS }} />, ...res.styles ]; return { ...res, styles: React.Children.toArray(styles) }; } Document.getInitialProps = getInitialProps; export default Document;
- To add all the fonts, write this piece of code in
Update
next.config.js
with this code (if you are using @native-base/next adapter):const { withNativebase } = require("@native-base/next-adapter"); const path = require("path"); module.exports = withNativebase({ dependencies: ["@native-base/icons"], nextConfig: { webpack: (config, options) => { config.module.rules.push({ test: /\.ttf$/, loader: "url-loader", // or directly file-loader include: path.resolve(__dirname, "node_modules/@native-base/icons"), }); config.resolve.alias = { ...(config.resolve.alias || {}), "react-native$": "react-native-web", }; config.resolve.extensions = [ ".web.js", ".web.ts", ".web.tsx", ...config.resolve.extensions, ]; return config; }, }, });
Create React App:
Add Fonts:
- To add all the fonts, write this piece of code in
index.jsx/index.tsx
:
import fontsCSS from "@native-base/icons/FontsCSS"; const style = document.createElement("style"); style.type = "text/css"; style.appendChild(document.createTextNode(fontsCSS)); document.head.appendChild(style);
- To add a particular font
import AntDesignFontFaceCSS from "@native-base/icons/FontsCSS/AntDesignFontFaceCSS"; import MaterialIconsFontFaceCSS from "@native-base/icons/FontsCSS/MaterialIconsFontFaceCSS"; const fontsCSS = AntDesignFontFaceCSS + MaterialIconsFontFaceCSS; const style = document.createElement("style"); style.type = "text/css"; if (style.styleSheet) { style.styleSheet.cssText += fontsCSS; } else { style.appendChild(document.createTextNode(fontsCSS)); } document.head.appendChild(style);
- To add all the fonts, write this piece of code in
Expo:
- Add this configuration to
.babel.config.js
file in root directory:
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
[
"module-resolver",
{
alias: {
"@native-base/icons": "@native-base/icons/lib",
},
},
],
],
};
};
Usage:
Now, let’s render an icon:
import { Entypo } from "@native-base/icons";
return <Icon as={Entypo} name="user"></Icon>;
Contributing:
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request