├── .github ├── FUNDING.yml ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo-angular ├── .editorconfig ├── .gitignore ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-1125h.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-X.png │ │ │ ├── Default-Landscape-XR.png │ │ │ ├── Default-Landscape-XS-Max.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait-XR.png │ │ │ ├── Default-Portrait-XS-Max.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen-Center@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Podfile │ │ └── build.xcconfig ├── LICENSE ├── angular.json ├── nsconfig.json ├── package-lock.json ├── package.json ├── references.d.ts ├── src │ ├── app.css │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── home │ │ │ ├── home-routing.module.ts │ │ │ ├── home.component.html │ │ │ ├── home.component.ts │ │ │ ├── home.module.ts │ │ │ └── particles.ts │ ├── main.ts │ └── package.json ├── tsconfig.json ├── tsconfig.tns.json ├── tsfmt.json └── webpack.config.js ├── demo-react ├── .editorconfig ├── .gitignore ├── LICENSE ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape-XR.png │ │ │ │ ├── Default-Landscape-XS-Max.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait-XR.png │ │ │ │ ├── Default-Portrait-XS-Max.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── app.scss │ ├── app.ts │ ├── components │ │ ├── AppContainer.scss │ │ ├── AppContainer.tsx │ │ ├── particles.ts │ │ └── swarm.ts │ ├── fonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ └── package.json ├── nsconfig.json ├── package-lock.json ├── package.json ├── patches │ └── @types+react+16.9.34.patch ├── react-nativescript.webpack.config.js ├── tsconfig.json ├── tsconfig.tns.json ├── tsfmt.json └── webpack.config.js ├── demo-vue ├── .gitignore ├── README.md ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape-XR.png │ │ │ │ ├── Default-Landscape-XS-Max.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait-XR.png │ │ │ │ ├── Default-Portrait-XS-Max.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── app.scss │ ├── assets │ │ └── images │ │ │ └── NativeScript-Vue.png │ ├── components │ │ ├── App.vue │ │ ├── particles.ts │ │ └── swarm.ts │ ├── fonts │ │ └── .gitkeep │ ├── main.ts │ └── package.json ├── package.json ├── tsconfig.json └── types │ ├── env.d.ts │ ├── references.d.ts │ └── shims.vue.d.ts ├── demo ├── .editorconfig ├── .gitignore ├── LICENSE ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape-XR.png │ │ │ │ ├── Default-Landscape-XS-Max.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait-XR.png │ │ │ │ ├── Default-Portrait-XS-Max.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Podfile │ │ │ └── build.xcconfig │ ├── abstractVisualization.ts │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── assets │ │ ├── Canvas_createpattern.png │ │ ├── files │ │ │ ├── bullet.png │ │ │ ├── enemy-bullet.png │ │ │ ├── explode.png │ │ │ ├── invader32x32x4.png │ │ │ ├── player.png │ │ │ └── starfield.png │ │ ├── icon.png │ │ ├── splash.png │ │ └── svg │ │ │ ├── 1551191365.svg │ │ │ ├── Ghostscript_Tiger.svg │ │ │ ├── Location_map_San_Francisco_Bay_Area.svg │ │ │ ├── Radially_concentric_created_streets_in_Washington,_D.C..svg │ │ │ ├── TNS_Location_map_San_Francisco_Bay_Area.svg │ │ │ └── The_Hague,_Netherlands,_the_old_city_center.svg │ ├── cloth.ts │ ├── codePen.ts │ ├── colorRain.ts │ ├── flappyBird.ts │ ├── flappybird │ │ ├── assets │ │ │ ├── background-day.png │ │ │ ├── background-night.png │ │ │ ├── bird-blue-sprite.png │ │ │ ├── bird-red-sprite.png │ │ │ ├── bird-yellow-sprite.png │ │ │ ├── gameover.png │ │ │ ├── ground-sprite.png │ │ │ ├── message-initial.png │ │ │ ├── number0.png │ │ │ ├── number1.png │ │ │ ├── number2.png │ │ │ ├── number3.png │ │ │ ├── number4.png │ │ │ ├── number5.png │ │ │ ├── number6.png │ │ │ ├── number7.png │ │ │ ├── number8.png │ │ │ ├── number9.png │ │ │ ├── pipe-green-bottom.png │ │ │ ├── pipe-green-top.png │ │ │ ├── pipe-red-bottom.png │ │ │ ├── pipe-red-top.png │ │ │ └── restart-button.png │ │ ├── flappybird.ts │ │ ├── flappybird.xml │ │ └── game.ts │ ├── games │ │ └── breakout │ │ │ ├── assets │ │ │ ├── ball1.png │ │ │ ├── ball2.png │ │ │ ├── blue1.png │ │ │ ├── blue2.png │ │ │ ├── breakout.json │ │ │ ├── breakout.png │ │ │ ├── breakout.tps │ │ │ ├── button.png │ │ │ ├── buttonOver.png │ │ │ ├── green1.png │ │ │ ├── green2.png │ │ │ ├── license.txt │ │ │ ├── paddle1.png │ │ │ ├── paddle2.png │ │ │ ├── particle1.png │ │ │ ├── particle2.png │ │ │ ├── particle3.png │ │ │ ├── purple1.png │ │ │ ├── purple2.png │ │ │ ├── red1.png │ │ │ ├── red2.png │ │ │ ├── silver1.png │ │ │ ├── silver2.png │ │ │ ├── yellow1.png │ │ │ └── yellow2.png │ │ │ ├── breakout.ts │ │ │ └── breakout.xml │ ├── home │ │ ├── home-page.ts │ │ ├── home-page.xml │ │ └── home-view-model.ts │ ├── lightening.ts │ ├── nativescript-browser-polyfill │ │ ├── DOM │ │ │ ├── Document.ts │ │ │ ├── Element.ts │ │ │ ├── HTMLCanvasElement.ts │ │ │ ├── HTMLImageElement.ts │ │ │ ├── HTMLVideoElement.ts │ │ │ └── Node.ts │ │ ├── index.ts │ │ ├── performance.ts │ │ ├── process.ts │ │ ├── resize.ts │ │ └── window.ts │ ├── package.json │ ├── particles │ │ ├── flies.ts │ │ ├── particles.ts │ │ ├── particlesColor.ts │ │ ├── particlesLarge.ts │ │ └── swarm.ts │ ├── phaser-example │ │ ├── phaser-example-view-model.ts │ │ ├── phaser-example.ts │ │ ├── phaser-example.xml │ │ └── utils.ts │ ├── rainbowOctopus.ts │ ├── solarSystem.ts │ ├── svg │ │ └── tiger │ ├── wave.ts │ ├── webgl │ │ ├── background-day.png │ │ ├── cubetexture.png │ │ ├── rick-and-morty-by-sawuinhaff-da64e7y.png │ │ ├── starfield.png │ │ ├── svh.jpeg │ │ └── utils.ts │ └── webgl2 │ │ ├── Di-3d.png │ │ └── images │ │ └── computer-history-museum │ │ ├── neg-x.jpg │ │ ├── neg-y.jpg │ │ ├── neg-z.jpg │ │ ├── pos-x.jpg │ │ ├── pos-y.jpg │ │ └── pos-z.jpg ├── nsconfig.json ├── package-lock.json ├── package.json ├── tsconfig.json ├── tsconfig.tns.json ├── tsfmt.json └── webpack.config.js ├── publish ├── pack.sh ├── package-lock.json ├── package.json └── publish.sh ├── src ├── .npmignore ├── CanvasGradient.android.ts ├── CanvasGradient.d.ts ├── CanvasGradient.ios.ts ├── CanvasPattern.android.ts ├── CanvasPattern.ios.ts ├── ColorHelper.ts ├── ImageData.android.ts ├── ImageData.d.ts ├── ImageData.ios.ts ├── TNSCanvas.android.ts ├── TNSCanvas.d.ts ├── TNSCanvas.ios.ts ├── TNSCanvasRenderingContext2D.android.ts ├── TNSCanvasRenderingContext2D.d.ts ├── TNSCanvasRenderingContext2D.ios.ts ├── TNSDOMMatrix.android.ts ├── TNSDOMMatrix.d.ts ├── TNSDOMMatrix.ios.ts ├── TNSImageAsset.android.ts ├── TNSImageAsset.d.ts ├── TNSImageAsset.ios.ts ├── TNSPath2D.android.ts ├── TNSPath2D.d.ts ├── TNSPath2D.ios.ts ├── TNSTextDecoder.android.ts ├── TNSTextDecoder.d.ts ├── TNSTextDecoder.ios.ts ├── TNSTextEncoder.android.ts ├── TNSTextEncoder.d.ts ├── TNSTextEncoder.ios.ts ├── TNSWebGL2RenderingContext.android.ts ├── TNSWebGL2RenderingContext.d.ts ├── TNSWebGL2RenderingContext.ios.ts ├── TNSWebGLExtensions.android.ts ├── TNSWebGLExtensions.d.ts ├── TNSWebGLExtensions.ios.ts ├── TNSWebGLRenderingContext.android.ts ├── TNSWebGLRenderingContext.d.ts ├── TNSWebGLRenderingContext.ios.ts ├── TextMetrics.android.ts ├── TextMetrics.d.ts ├── TextMetrics.ios.ts ├── angular │ ├── index.d.ts │ ├── index.ts │ └── package.json ├── canvas-plugin.android.ts ├── canvas-plugin.common.ts ├── canvas-plugin.d.ts ├── canvas-plugin.ios.ts ├── package-lock.json ├── package.json ├── platforms │ ├── android │ │ └── include.gradle │ └── ios │ │ ├── Podfile │ │ └── build.xcconfig ├── react │ ├── index.d.ts │ ├── index.ts │ └── package.json ├── references.d.ts ├── scripts │ └── build-native.js ├── svg │ ├── Circle.d.ts │ ├── Circle.ts │ ├── ClipPath.d.ts │ ├── ClipPath.ts │ ├── Defs.d.ts │ ├── Defs.ts │ ├── Ellipse.d.ts │ ├── Ellipse.ts │ ├── G.d.ts │ ├── G.ts │ ├── Image.d.ts │ ├── Image.ts │ ├── Line.d.ts │ ├── Line.ts │ ├── LinearGradient.d.ts │ ├── LinearGradient.ts │ ├── Path.d.ts │ ├── Path.ts │ ├── Pattern.d.ts │ ├── Pattern.ts │ ├── Polygon.d.ts │ ├── Polygon.ts │ ├── Polyline.d.ts │ ├── Polyline.ts │ ├── Rect.d.ts │ ├── Rect.ts │ ├── SVG.d.ts │ ├── SVG.ts │ ├── SVGItem.d.ts │ ├── SVGItem.ts │ ├── Stop.d.ts │ ├── Stop.ts │ ├── Symbol.d.ts │ ├── Symbol.ts │ ├── Text.d.ts │ ├── Text.ts │ ├── Use.d.ts │ ├── Use.ts │ ├── index.d.ts │ ├── index.ts │ └── package.json ├── tsconfig.json ├── typings │ ├── android.d.ts │ └── objc!CanvasNative └── vue │ ├── index.js │ └── package.json └── tslint.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/README.md -------------------------------------------------------------------------------- /demo-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/.editorconfig -------------------------------------------------------------------------------- /demo-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/.gitignore -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '11.0' 2 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo-angular/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/LICENSE -------------------------------------------------------------------------------- /demo-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/angular.json -------------------------------------------------------------------------------- /demo-angular/nsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/nsconfig.json -------------------------------------------------------------------------------- /demo-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/package-lock.json -------------------------------------------------------------------------------- /demo-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/package.json -------------------------------------------------------------------------------- /demo-angular/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/references.d.ts -------------------------------------------------------------------------------- /demo-angular/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app.css -------------------------------------------------------------------------------- /demo-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /demo-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/app.component.html -------------------------------------------------------------------------------- /demo-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /demo-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /demo-angular/src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /demo-angular/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/home/home.component.html -------------------------------------------------------------------------------- /demo-angular/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/home/home.component.ts -------------------------------------------------------------------------------- /demo-angular/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/home/home.module.ts -------------------------------------------------------------------------------- /demo-angular/src/app/home/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/app/home/particles.ts -------------------------------------------------------------------------------- /demo-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/main.ts -------------------------------------------------------------------------------- /demo-angular/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/src/package.json -------------------------------------------------------------------------------- /demo-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/tsconfig.json -------------------------------------------------------------------------------- /demo-angular/tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/tsconfig.tns.json -------------------------------------------------------------------------------- /demo-angular/tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/tsfmt.json -------------------------------------------------------------------------------- /demo-angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-angular/webpack.config.js -------------------------------------------------------------------------------- /demo-react/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/.editorconfig -------------------------------------------------------------------------------- /demo-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/.gitignore -------------------------------------------------------------------------------- /demo-react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/LICENSE -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo-react/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo-react/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/app.scss -------------------------------------------------------------------------------- /demo-react/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/app.ts -------------------------------------------------------------------------------- /demo-react/app/components/AppContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/components/AppContainer.scss -------------------------------------------------------------------------------- /demo-react/app/components/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/components/AppContainer.tsx -------------------------------------------------------------------------------- /demo-react/app/components/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/components/particles.ts -------------------------------------------------------------------------------- /demo-react/app/components/swarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/components/swarm.ts -------------------------------------------------------------------------------- /demo-react/app/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo-react/app/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo-react/app/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo-react/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/app/package.json -------------------------------------------------------------------------------- /demo-react/nsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/nsconfig.json -------------------------------------------------------------------------------- /demo-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/package-lock.json -------------------------------------------------------------------------------- /demo-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/package.json -------------------------------------------------------------------------------- /demo-react/patches/@types+react+16.9.34.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/patches/@types+react+16.9.34.patch -------------------------------------------------------------------------------- /demo-react/react-nativescript.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/react-nativescript.webpack.config.js -------------------------------------------------------------------------------- /demo-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/tsconfig.json -------------------------------------------------------------------------------- /demo-react/tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/tsconfig.tns.json -------------------------------------------------------------------------------- /demo-react/tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/tsfmt.json -------------------------------------------------------------------------------- /demo-react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-react/webpack.config.js -------------------------------------------------------------------------------- /demo-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/.gitignore -------------------------------------------------------------------------------- /demo-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/README.md -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values-v21/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values-v21/strings.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo-vue/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo-vue/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/app.scss -------------------------------------------------------------------------------- /demo-vue/app/assets/images/NativeScript-Vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/assets/images/NativeScript-Vue.png -------------------------------------------------------------------------------- /demo-vue/app/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/components/App.vue -------------------------------------------------------------------------------- /demo-vue/app/components/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/components/particles.ts -------------------------------------------------------------------------------- /demo-vue/app/components/swarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/components/swarm.ts -------------------------------------------------------------------------------- /demo-vue/app/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-vue/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/main.ts -------------------------------------------------------------------------------- /demo-vue/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/app/package.json -------------------------------------------------------------------------------- /demo-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/package.json -------------------------------------------------------------------------------- /demo-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/tsconfig.json -------------------------------------------------------------------------------- /demo-vue/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare var TNS_ENV: string; -------------------------------------------------------------------------------- /demo-vue/types/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/types/references.d.ts -------------------------------------------------------------------------------- /demo-vue/types/shims.vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo-vue/types/shims.vue.d.ts -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/LICENSE -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '11.0' 2 | -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/abstractVisualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/abstractVisualization.ts -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/app-root.xml -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/assets/Canvas_createpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/Canvas_createpattern.png -------------------------------------------------------------------------------- /demo/app/assets/files/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/bullet.png -------------------------------------------------------------------------------- /demo/app/assets/files/enemy-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/enemy-bullet.png -------------------------------------------------------------------------------- /demo/app/assets/files/explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/explode.png -------------------------------------------------------------------------------- /demo/app/assets/files/invader32x32x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/invader32x32x4.png -------------------------------------------------------------------------------- /demo/app/assets/files/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/player.png -------------------------------------------------------------------------------- /demo/app/assets/files/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/files/starfield.png -------------------------------------------------------------------------------- /demo/app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/icon.png -------------------------------------------------------------------------------- /demo/app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/splash.png -------------------------------------------------------------------------------- /demo/app/assets/svg/1551191365.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/1551191365.svg -------------------------------------------------------------------------------- /demo/app/assets/svg/Ghostscript_Tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/Ghostscript_Tiger.svg -------------------------------------------------------------------------------- /demo/app/assets/svg/Location_map_San_Francisco_Bay_Area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/Location_map_San_Francisco_Bay_Area.svg -------------------------------------------------------------------------------- /demo/app/assets/svg/Radially_concentric_created_streets_in_Washington,_D.C..svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/Radially_concentric_created_streets_in_Washington,_D.C..svg -------------------------------------------------------------------------------- /demo/app/assets/svg/TNS_Location_map_San_Francisco_Bay_Area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/TNS_Location_map_San_Francisco_Bay_Area.svg -------------------------------------------------------------------------------- /demo/app/assets/svg/The_Hague,_Netherlands,_the_old_city_center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/assets/svg/The_Hague,_Netherlands,_the_old_city_center.svg -------------------------------------------------------------------------------- /demo/app/cloth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/cloth.ts -------------------------------------------------------------------------------- /demo/app/codePen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/codePen.ts -------------------------------------------------------------------------------- /demo/app/colorRain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/colorRain.ts -------------------------------------------------------------------------------- /demo/app/flappyBird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappyBird.ts -------------------------------------------------------------------------------- /demo/app/flappybird/assets/background-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/background-day.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/background-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/background-night.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/bird-blue-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/bird-blue-sprite.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/bird-red-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/bird-red-sprite.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/bird-yellow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/bird-yellow-sprite.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/gameover.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/ground-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/ground-sprite.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/message-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/message-initial.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number0.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number1.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number2.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number3.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number4.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number5.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number6.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number7.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number8.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/number9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/number9.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/pipe-green-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/pipe-green-bottom.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/pipe-green-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/pipe-green-top.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/pipe-red-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/pipe-red-bottom.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/pipe-red-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/pipe-red-top.png -------------------------------------------------------------------------------- /demo/app/flappybird/assets/restart-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/assets/restart-button.png -------------------------------------------------------------------------------- /demo/app/flappybird/flappybird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/flappybird.ts -------------------------------------------------------------------------------- /demo/app/flappybird/flappybird.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/flappybird.xml -------------------------------------------------------------------------------- /demo/app/flappybird/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/flappybird/game.ts -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/ball1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/ball1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/ball2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/ball2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/blue1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/blue2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/breakout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/breakout.json -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/breakout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/breakout.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/breakout.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/breakout.tps -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/button.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/buttonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/buttonOver.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/green1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/green2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/license.txt -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/paddle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/paddle1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/paddle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/paddle2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/particle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/particle1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/particle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/particle2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/particle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/particle3.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/purple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/purple1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/purple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/purple2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/red1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/red1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/red2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/red2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/silver1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/silver1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/silver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/silver2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/yellow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/yellow1.png -------------------------------------------------------------------------------- /demo/app/games/breakout/assets/yellow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/assets/yellow2.png -------------------------------------------------------------------------------- /demo/app/games/breakout/breakout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/breakout.ts -------------------------------------------------------------------------------- /demo/app/games/breakout/breakout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/games/breakout/breakout.xml -------------------------------------------------------------------------------- /demo/app/home/home-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/home/home-page.ts -------------------------------------------------------------------------------- /demo/app/home/home-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/home/home-page.xml -------------------------------------------------------------------------------- /demo/app/home/home-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/home/home-view-model.ts -------------------------------------------------------------------------------- /demo/app/lightening.ts: -------------------------------------------------------------------------------- 1 | export function lightening(canvas){ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/Document.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/Element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/Element.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/HTMLCanvasElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/HTMLCanvasElement.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/HTMLImageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/HTMLImageElement.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/HTMLVideoElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/HTMLVideoElement.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/DOM/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/DOM/Node.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/index.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/performance.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/process.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/resize.ts -------------------------------------------------------------------------------- /demo/app/nativescript-browser-polyfill/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/nativescript-browser-polyfill/window.ts -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/app/particles/flies.ts: -------------------------------------------------------------------------------- 1 | export function flies(canvas){ 2 | 3 | 4 | } 5 | -------------------------------------------------------------------------------- /demo/app/particles/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/particles/particles.ts -------------------------------------------------------------------------------- /demo/app/particles/particlesColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/particles/particlesColor.ts -------------------------------------------------------------------------------- /demo/app/particles/particlesLarge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/particles/particlesLarge.ts -------------------------------------------------------------------------------- /demo/app/particles/swarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/particles/swarm.ts -------------------------------------------------------------------------------- /demo/app/phaser-example/phaser-example-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/phaser-example/phaser-example-view-model.ts -------------------------------------------------------------------------------- /demo/app/phaser-example/phaser-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/phaser-example/phaser-example.ts -------------------------------------------------------------------------------- /demo/app/phaser-example/phaser-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/phaser-example/phaser-example.xml -------------------------------------------------------------------------------- /demo/app/phaser-example/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/phaser-example/utils.ts -------------------------------------------------------------------------------- /demo/app/rainbowOctopus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/rainbowOctopus.ts -------------------------------------------------------------------------------- /demo/app/solarSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/solarSystem.ts -------------------------------------------------------------------------------- /demo/app/svg/tiger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/svg/tiger -------------------------------------------------------------------------------- /demo/app/wave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/wave.ts -------------------------------------------------------------------------------- /demo/app/webgl/background-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/background-day.png -------------------------------------------------------------------------------- /demo/app/webgl/cubetexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/cubetexture.png -------------------------------------------------------------------------------- /demo/app/webgl/rick-and-morty-by-sawuinhaff-da64e7y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/rick-and-morty-by-sawuinhaff-da64e7y.png -------------------------------------------------------------------------------- /demo/app/webgl/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/starfield.png -------------------------------------------------------------------------------- /demo/app/webgl/svh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/svh.jpeg -------------------------------------------------------------------------------- /demo/app/webgl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl/utils.ts -------------------------------------------------------------------------------- /demo/app/webgl2/Di-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/Di-3d.png -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/neg-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/neg-x.jpg -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/neg-y.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/neg-y.jpg -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/neg-z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/neg-z.jpg -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/pos-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/pos-x.jpg -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/pos-y.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/pos-y.jpg -------------------------------------------------------------------------------- /demo/app/webgl2/images/computer-history-museum/pos-z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/app/webgl2/images/computer-history-museum/pos-z.jpg -------------------------------------------------------------------------------- /demo/nsconfig.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/tsconfig.tns.json -------------------------------------------------------------------------------- /demo/tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/tsfmt.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /publish/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/publish/pack.sh -------------------------------------------------------------------------------- /publish/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/publish/package-lock.json -------------------------------------------------------------------------------- /publish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/publish/package.json -------------------------------------------------------------------------------- /publish/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/publish/publish.sh -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/CanvasGradient.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/CanvasGradient.android.ts -------------------------------------------------------------------------------- /src/CanvasGradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/CanvasGradient.d.ts -------------------------------------------------------------------------------- /src/CanvasGradient.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/CanvasGradient.ios.ts -------------------------------------------------------------------------------- /src/CanvasPattern.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/CanvasPattern.android.ts -------------------------------------------------------------------------------- /src/CanvasPattern.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/CanvasPattern.ios.ts -------------------------------------------------------------------------------- /src/ColorHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/ColorHelper.ts -------------------------------------------------------------------------------- /src/ImageData.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/ImageData.android.ts -------------------------------------------------------------------------------- /src/ImageData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/ImageData.d.ts -------------------------------------------------------------------------------- /src/ImageData.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/ImageData.ios.ts -------------------------------------------------------------------------------- /src/TNSCanvas.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvas.android.ts -------------------------------------------------------------------------------- /src/TNSCanvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvas.d.ts -------------------------------------------------------------------------------- /src/TNSCanvas.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvas.ios.ts -------------------------------------------------------------------------------- /src/TNSCanvasRenderingContext2D.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvasRenderingContext2D.android.ts -------------------------------------------------------------------------------- /src/TNSCanvasRenderingContext2D.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvasRenderingContext2D.d.ts -------------------------------------------------------------------------------- /src/TNSCanvasRenderingContext2D.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSCanvasRenderingContext2D.ios.ts -------------------------------------------------------------------------------- /src/TNSDOMMatrix.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSDOMMatrix.android.ts -------------------------------------------------------------------------------- /src/TNSDOMMatrix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSDOMMatrix.d.ts -------------------------------------------------------------------------------- /src/TNSDOMMatrix.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSDOMMatrix.ios.ts -------------------------------------------------------------------------------- /src/TNSImageAsset.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSImageAsset.android.ts -------------------------------------------------------------------------------- /src/TNSImageAsset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSImageAsset.d.ts -------------------------------------------------------------------------------- /src/TNSImageAsset.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSImageAsset.ios.ts -------------------------------------------------------------------------------- /src/TNSPath2D.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSPath2D.android.ts -------------------------------------------------------------------------------- /src/TNSPath2D.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSPath2D.d.ts -------------------------------------------------------------------------------- /src/TNSPath2D.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSPath2D.ios.ts -------------------------------------------------------------------------------- /src/TNSTextDecoder.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextDecoder.android.ts -------------------------------------------------------------------------------- /src/TNSTextDecoder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextDecoder.d.ts -------------------------------------------------------------------------------- /src/TNSTextDecoder.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextDecoder.ios.ts -------------------------------------------------------------------------------- /src/TNSTextEncoder.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextEncoder.android.ts -------------------------------------------------------------------------------- /src/TNSTextEncoder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextEncoder.d.ts -------------------------------------------------------------------------------- /src/TNSTextEncoder.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSTextEncoder.ios.ts -------------------------------------------------------------------------------- /src/TNSWebGL2RenderingContext.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGL2RenderingContext.android.ts -------------------------------------------------------------------------------- /src/TNSWebGL2RenderingContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGL2RenderingContext.d.ts -------------------------------------------------------------------------------- /src/TNSWebGL2RenderingContext.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGL2RenderingContext.ios.ts -------------------------------------------------------------------------------- /src/TNSWebGLExtensions.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLExtensions.android.ts -------------------------------------------------------------------------------- /src/TNSWebGLExtensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLExtensions.d.ts -------------------------------------------------------------------------------- /src/TNSWebGLExtensions.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLExtensions.ios.ts -------------------------------------------------------------------------------- /src/TNSWebGLRenderingContext.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLRenderingContext.android.ts -------------------------------------------------------------------------------- /src/TNSWebGLRenderingContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLRenderingContext.d.ts -------------------------------------------------------------------------------- /src/TNSWebGLRenderingContext.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TNSWebGLRenderingContext.ios.ts -------------------------------------------------------------------------------- /src/TextMetrics.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TextMetrics.android.ts -------------------------------------------------------------------------------- /src/TextMetrics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TextMetrics.d.ts -------------------------------------------------------------------------------- /src/TextMetrics.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/TextMetrics.ios.ts -------------------------------------------------------------------------------- /src/angular/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare class TNSCanvasModule { 2 | } 3 | -------------------------------------------------------------------------------- /src/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/angular/index.ts -------------------------------------------------------------------------------- /src/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index" 3 | } 4 | -------------------------------------------------------------------------------- /src/canvas-plugin.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/canvas-plugin.android.ts -------------------------------------------------------------------------------- /src/canvas-plugin.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/canvas-plugin.common.ts -------------------------------------------------------------------------------- /src/canvas-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/canvas-plugin.d.ts -------------------------------------------------------------------------------- /src/canvas-plugin.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/canvas-plugin.ios.ts -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/package.json -------------------------------------------------------------------------------- /src/platforms/android/include.gradle: -------------------------------------------------------------------------------- 1 | dependencies { 2 | implementation 'com.github.triniwiz:canvas:0.8.0' 3 | } 4 | -------------------------------------------------------------------------------- /src/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/platforms/ios/Podfile -------------------------------------------------------------------------------- /src/platforms/ios/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/platforms/ios/build.xcconfig -------------------------------------------------------------------------------- /src/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/react/index.d.ts -------------------------------------------------------------------------------- /src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/react/index.ts -------------------------------------------------------------------------------- /src/react/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index" 3 | } 4 | -------------------------------------------------------------------------------- /src/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/references.d.ts -------------------------------------------------------------------------------- /src/scripts/build-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/scripts/build-native.js -------------------------------------------------------------------------------- /src/svg/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Circle.d.ts -------------------------------------------------------------------------------- /src/svg/Circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Circle.ts -------------------------------------------------------------------------------- /src/svg/ClipPath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/ClipPath.d.ts -------------------------------------------------------------------------------- /src/svg/ClipPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/ClipPath.ts -------------------------------------------------------------------------------- /src/svg/Defs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Defs.d.ts -------------------------------------------------------------------------------- /src/svg/Defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Defs.ts -------------------------------------------------------------------------------- /src/svg/Ellipse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Ellipse.d.ts -------------------------------------------------------------------------------- /src/svg/Ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Ellipse.ts -------------------------------------------------------------------------------- /src/svg/G.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/G.d.ts -------------------------------------------------------------------------------- /src/svg/G.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/G.ts -------------------------------------------------------------------------------- /src/svg/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Image.d.ts -------------------------------------------------------------------------------- /src/svg/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Image.ts -------------------------------------------------------------------------------- /src/svg/Line.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Line.d.ts -------------------------------------------------------------------------------- /src/svg/Line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Line.ts -------------------------------------------------------------------------------- /src/svg/LinearGradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/LinearGradient.d.ts -------------------------------------------------------------------------------- /src/svg/LinearGradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/LinearGradient.ts -------------------------------------------------------------------------------- /src/svg/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Path.d.ts -------------------------------------------------------------------------------- /src/svg/Path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Path.ts -------------------------------------------------------------------------------- /src/svg/Pattern.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Pattern.d.ts -------------------------------------------------------------------------------- /src/svg/Pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Pattern.ts -------------------------------------------------------------------------------- /src/svg/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Polygon.d.ts -------------------------------------------------------------------------------- /src/svg/Polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Polygon.ts -------------------------------------------------------------------------------- /src/svg/Polyline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Polyline.d.ts -------------------------------------------------------------------------------- /src/svg/Polyline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Polyline.ts -------------------------------------------------------------------------------- /src/svg/Rect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Rect.d.ts -------------------------------------------------------------------------------- /src/svg/Rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Rect.ts -------------------------------------------------------------------------------- /src/svg/SVG.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/SVG.d.ts -------------------------------------------------------------------------------- /src/svg/SVG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/SVG.ts -------------------------------------------------------------------------------- /src/svg/SVGItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/SVGItem.d.ts -------------------------------------------------------------------------------- /src/svg/SVGItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/SVGItem.ts -------------------------------------------------------------------------------- /src/svg/Stop.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Stop.d.ts -------------------------------------------------------------------------------- /src/svg/Stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Stop.ts -------------------------------------------------------------------------------- /src/svg/Symbol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Symbol.d.ts -------------------------------------------------------------------------------- /src/svg/Symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Symbol.ts -------------------------------------------------------------------------------- /src/svg/Text.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Text.d.ts -------------------------------------------------------------------------------- /src/svg/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Text.ts -------------------------------------------------------------------------------- /src/svg/Use.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Use.d.ts -------------------------------------------------------------------------------- /src/svg/Use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/Use.ts -------------------------------------------------------------------------------- /src/svg/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/index.d.ts -------------------------------------------------------------------------------- /src/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/svg/index.ts -------------------------------------------------------------------------------- /src/svg/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index" 3 | } -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/typings/android.d.ts -------------------------------------------------------------------------------- /src/typings/objc!CanvasNative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/typings/objc!CanvasNative -------------------------------------------------------------------------------- /src/vue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/src/vue/index.js -------------------------------------------------------------------------------- /src/vue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index" 3 | } 4 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triniwiz/nativescript-canvas-plugin/HEAD/tslint.json --------------------------------------------------------------------------------