Use SVG with React Native

#React Native

whck6

PNG、JPG

在 React Native 中載入圖片可以使用。

require("./mypng.png");
require("./myjpg.jpg");

SVG

假如是想載入 .svg 的話,就需要第三方的套件幫忙,或是轉成字型檔載入,以下是我使用字型檔的方式。

react-native-vector-icons

import { createIconSetFromFontello } from "react-native-vector-icons";
import fontelloConfig from "./config.json";
const Icon = createIconSetFromFontello(fontelloConfig);

https://facebook.github.io/react-native/docs/image.html#source