├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo ├── .gitignore ├── App_Resources │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── app.gradle │ │ ├── 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-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.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.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ └── LaunchScreen-Center@2x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── main-page.ts │ ├── main-page.xml │ └── main-view-model.ts ├── nativescript.config.ts ├── package-lock.json ├── package.json ├── references.d.ts ├── tsconfig.json └── webpack.config.js ├── publish ├── pack.sh ├── package-lock.json ├── package.json └── publish.sh ├── screenshots └── new_70.png ├── src ├── .npmignore ├── effects.android.ts ├── effects.common.ts ├── effects.ios.ts ├── index.d.ts ├── package-lock.json ├── package.json ├── platforms │ └── android │ │ └── include.gradle ├── references.d.ts └── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | hooks 2 | node_modules 3 | platforms -------------------------------------------------------------------------------- /demo/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/app-root.xml -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/main-page.ts -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/app/main-view-model.ts -------------------------------------------------------------------------------- /demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/nativescript.config.ts -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/references.d.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /publish/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/publish/pack.sh -------------------------------------------------------------------------------- /publish/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/publish/package-lock.json -------------------------------------------------------------------------------- /publish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/publish/package.json -------------------------------------------------------------------------------- /publish/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/publish/publish.sh -------------------------------------------------------------------------------- /screenshots/new_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/screenshots/new_70.png -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/effects.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/effects.android.ts -------------------------------------------------------------------------------- /src/effects.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/effects.common.ts -------------------------------------------------------------------------------- /src/effects.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/effects.ios.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/package.json -------------------------------------------------------------------------------- /src/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/platforms/android/include.gradle -------------------------------------------------------------------------------- /src/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/nativescript-effects/HEAD/tslint.json --------------------------------------------------------------------------------