├── .gitattributes ├── .github └── workflows │ ├── deploy.yml │ └── tests.yml ├── .gitignore ├── .node-version ├── .prettierrc ├── Example ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-night │ │ │ └── react_svg_d0ad45.xml │ │ │ ├── drawable │ │ │ ├── react_svg_d0ad45.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Example.xcscheme │ ├── Example.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Example │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── react_svg_d0ad45.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dark.pdf │ │ │ │ └── light.pdf │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── react.dark.svg ├── react.svg ├── tsconfig.json └── yarn.lock ├── LICENSE ├── README.md ├── app.plugin.js ├── bin ├── react-native-vector-image.js └── svg2vd-0.1.jar ├── expo-module.config.json ├── package.json ├── plugin ├── .eslintrc.js ├── __tests__ │ ├── android │ │ └── withVectorImage-test.ts │ ├── both │ │ └── withVectorImage-test.ts │ └── fixtures │ │ ├── build.gradle │ │ └── example.pbxproj ├── example │ ├── .gitignore │ ├── App.tsx │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash-icon.png │ ├── babel.config.js │ ├── index.ts │ ├── metro.config.js │ ├── package.json │ ├── react.dark.svg │ ├── react.svg │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── src │ └── withVectorImage.ts └── tsconfig.json ├── scripts └── build-svg2vd.sh ├── src ├── cli │ ├── convertSvgToPdf.js │ ├── convertSvgToPdf.spec.js │ ├── convertSvgToVd.js │ ├── convertSvgToVd.spec.js │ ├── errors.js │ ├── fixtures │ │ ├── current-color.svg │ │ ├── drop-shadow.svg │ │ ├── index.js │ │ ├── react-logo.svg │ │ └── rectangle.svg │ ├── generateAndroidAsset.js │ ├── generateAssets.js │ ├── generateIosAsset.js │ ├── getAssets.js │ ├── index.js │ ├── readSvgAsset.js │ ├── readSvgAsset.spec.js │ ├── resolveAssetSources.js │ └── streams.js ├── getResourceName.js ├── getResourceName.spec.js ├── index.d.ts ├── index.js └── index.web.js ├── strip_svgs.gradle ├── strip_svgs.sh ├── tests └── ensure-svgs-stripped-ios.sh └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.19.5 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/.prettierrc -------------------------------------------------------------------------------- /Example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/.bundle/config -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/.prettierrc.js -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/App.tsx -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/README.md -------------------------------------------------------------------------------- /Example/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/__tests__/App.test.tsx -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/java/com/example/MainActivity.kt -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/java/com/example/MainApplication.kt -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-night/react_svg_d0ad45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/drawable-night/react_svg_d0ad45.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/react_svg_d0ad45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/drawable/react_svg_d0ad45.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/.xcode.env -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/ios/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/dark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/dark.pdf -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Images.xcassets/react_svg_d0ad45.imageset/light.pdf -------------------------------------------------------------------------------- /Example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/Info.plist -------------------------------------------------------------------------------- /Example/ios/Example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/Example/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Example/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/ios/Podfile.lock -------------------------------------------------------------------------------- /Example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/react.dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/react.dark.svg -------------------------------------------------------------------------------- /Example/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/react.svg -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/tsconfig.json -------------------------------------------------------------------------------- /Example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/Example/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/README.md -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./plugin/build/withVectorImage'); 2 | -------------------------------------------------------------------------------- /bin/react-native-vector-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/bin/react-native-vector-image.js -------------------------------------------------------------------------------- /bin/svg2vd-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/bin/svg2vd-0.1.jar -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/package.json -------------------------------------------------------------------------------- /plugin/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/.eslintrc.js -------------------------------------------------------------------------------- /plugin/__tests__/android/withVectorImage-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/__tests__/android/withVectorImage-test.ts -------------------------------------------------------------------------------- /plugin/__tests__/both/withVectorImage-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/__tests__/both/withVectorImage-test.ts -------------------------------------------------------------------------------- /plugin/__tests__/fixtures/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/__tests__/fixtures/build.gradle -------------------------------------------------------------------------------- /plugin/__tests__/fixtures/example.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/__tests__/fixtures/example.pbxproj -------------------------------------------------------------------------------- /plugin/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/.gitignore -------------------------------------------------------------------------------- /plugin/example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/App.tsx -------------------------------------------------------------------------------- /plugin/example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/app.json -------------------------------------------------------------------------------- /plugin/example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /plugin/example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/assets/favicon.png -------------------------------------------------------------------------------- /plugin/example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/assets/icon.png -------------------------------------------------------------------------------- /plugin/example/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/assets/splash-icon.png -------------------------------------------------------------------------------- /plugin/example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/babel.config.js -------------------------------------------------------------------------------- /plugin/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/index.ts -------------------------------------------------------------------------------- /plugin/example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/metro.config.js -------------------------------------------------------------------------------- /plugin/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/package.json -------------------------------------------------------------------------------- /plugin/example/react.dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/react.dark.svg -------------------------------------------------------------------------------- /plugin/example/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/react.svg -------------------------------------------------------------------------------- /plugin/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/tsconfig.json -------------------------------------------------------------------------------- /plugin/example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/webpack.config.js -------------------------------------------------------------------------------- /plugin/example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/example/yarn.lock -------------------------------------------------------------------------------- /plugin/src/withVectorImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/src/withVectorImage.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /scripts/build-svg2vd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/scripts/build-svg2vd.sh -------------------------------------------------------------------------------- /src/cli/convertSvgToPdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/convertSvgToPdf.js -------------------------------------------------------------------------------- /src/cli/convertSvgToPdf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/convertSvgToPdf.spec.js -------------------------------------------------------------------------------- /src/cli/convertSvgToVd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/convertSvgToVd.js -------------------------------------------------------------------------------- /src/cli/convertSvgToVd.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/convertSvgToVd.spec.js -------------------------------------------------------------------------------- /src/cli/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/errors.js -------------------------------------------------------------------------------- /src/cli/fixtures/current-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/fixtures/current-color.svg -------------------------------------------------------------------------------- /src/cli/fixtures/drop-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/fixtures/drop-shadow.svg -------------------------------------------------------------------------------- /src/cli/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/fixtures/index.js -------------------------------------------------------------------------------- /src/cli/fixtures/react-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/fixtures/react-logo.svg -------------------------------------------------------------------------------- /src/cli/fixtures/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/fixtures/rectangle.svg -------------------------------------------------------------------------------- /src/cli/generateAndroidAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/generateAndroidAsset.js -------------------------------------------------------------------------------- /src/cli/generateAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/generateAssets.js -------------------------------------------------------------------------------- /src/cli/generateIosAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/generateIosAsset.js -------------------------------------------------------------------------------- /src/cli/getAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/getAssets.js -------------------------------------------------------------------------------- /src/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/index.js -------------------------------------------------------------------------------- /src/cli/readSvgAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/readSvgAsset.js -------------------------------------------------------------------------------- /src/cli/readSvgAsset.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/readSvgAsset.spec.js -------------------------------------------------------------------------------- /src/cli/resolveAssetSources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/resolveAssetSources.js -------------------------------------------------------------------------------- /src/cli/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/cli/streams.js -------------------------------------------------------------------------------- /src/getResourceName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/getResourceName.js -------------------------------------------------------------------------------- /src/getResourceName.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/getResourceName.spec.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.web.js: -------------------------------------------------------------------------------- 1 | export { Image as default } from 'react-native'; 2 | -------------------------------------------------------------------------------- /strip_svgs.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/strip_svgs.gradle -------------------------------------------------------------------------------- /strip_svgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/strip_svgs.sh -------------------------------------------------------------------------------- /tests/ensure-svgs-stripped-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/tests/ensure-svgs-stripped-ios.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblador/react-native-vector-image/HEAD/yarn.lock --------------------------------------------------------------------------------