├── .gitignore
├── LICENSE
├── README.md
├── app
├── App_Resources
│ ├── Android
│ │ ├── AndroidManifest.xml
│ │ ├── app.gradle
│ │ ├── drawable-hdpi
│ │ │ ├── background.png
│ │ │ ├── ic_arrow_back_white_24dp.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── drawable-ldpi
│ │ │ ├── background.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── drawable-ldrtl-hdpi
│ │ │ └── ic_arrow_back_white_24dp.png
│ │ ├── drawable-ldrtl-mdpi
│ │ │ └── ic_arrow_back_white_24dp.png
│ │ ├── drawable-ldrtl-xhdpi
│ │ │ └── ic_arrow_back_white_24dp.png
│ │ ├── drawable-ldrtl-xxhdpi
│ │ │ └── ic_arrow_back_white_24dp.png
│ │ ├── drawable-ldrtl-xxxhdpi
│ │ │ └── ic_arrow_back_white_24dp.png
│ │ ├── drawable-mdpi
│ │ │ ├── background.png
│ │ │ ├── ic_arrow_back_white_24dp.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── drawable-nodpi
│ │ │ └── splash_screen.xml
│ │ ├── drawable-xhdpi
│ │ │ ├── background.png
│ │ │ ├── ic_arrow_back_white_24dp.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── background.png
│ │ │ ├── ic_arrow_back_white_24dp.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── drawable-xxxhdpi
│ │ │ ├── background.png
│ │ │ ├── ic_arrow_back_white_24dp.png
│ │ │ ├── icon.png
│ │ │ └── logo.png
│ │ ├── settings.gradle
│ │ ├── settings.json
│ │ ├── values-v21
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ └── iOS
│ │ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── icon-1024.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-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
│ │ ├── ic_arrow_back_white_24dp.png
│ │ ├── ic_arrow_back_white_24dp_2x.png
│ │ └── ic_arrow_back_white_24dp_3x.png
├── LICENSE
├── README.md
├── app.css
├── app.js
├── bundle-config.js
├── detail
│ ├── detail.js
│ └── detail.xml
├── master
│ ├── master-view-model.js
│ ├── master.js
│ └── master.xml
├── package.json
└── references.d.ts
├── assets
├── .DS_Store
├── set-demo-ios.gif
├── set-demo-ios.mov
├── set-demo.gif
└── set-demo.mp4
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | npm-debug.log
2 | .DS_Store
3 |
4 | *.js.map
5 | hooks/
6 | lib/
7 | node_modules/
8 | platforms/
9 | tmp/
10 | typings/
11 | .idea
12 | .tmp_backup
13 | .vscode
14 | package-lock.json
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2017 Shiva Prasad
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 |
5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6 |
7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # NativeScript Demo app to show master detail shared element transition
2 |
3 | Contents of the app were taken from [Here](https://developer.telerik.com/community/developer-experts/)
4 |
5 | Inspired by [this](https://medium.com/@aitorvs/android-shared-element-transitions-for-all-b90e9361507d) Article on Medium.
6 | Also Inspired by [this](https://youtu.be/VwO3vQmEpJE?t=788) video by Alex Ziskind
7 |
8 | ## ScreenShots
9 | Android | IOS
10 | --------|---------
11 |
|
12 |
13 |
14 | For actual reference, see the mp4 and mov videos in the assets folder
15 |
16 | More details coming soon
17 |
18 | License MIT
19 | Shiva Prasad
20 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/app.gradle:
--------------------------------------------------------------------------------
1 | // Add your native dependencies here:
2 |
3 | // Uncomment to add recyclerview-v7 dependency
4 | //dependencies {
5 | // compile 'com.android.support:recyclerview-v7:+'
6 | //}
7 |
8 | android {
9 | defaultConfig {
10 | generatedDensities = []
11 | applicationId = "com.shiv19.setdemo"
12 |
13 | //override supported platforms
14 | // ndk {
15 | // abiFilters.clear()
16 | // abiFilters "armeabi-v7a"
17 | // }
18 |
19 | }
20 | aaptOptions {
21 | additionalParameters "--no-version-vectors"
22 | }
23 | }
24 |
25 | def settingsGradlePath = "$projectDir/../../app/App_Resources/Android/settings.gradle";
26 | def settingsGradleFile = new File(settingsGradlePath);
27 | if(settingsGradleFile.exists())
28 | {
29 | apply from: settingsGradleFile;
30 | }
31 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-hdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-hdpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-hdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-hdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-hdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-hdpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldrtl-hdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldrtl-hdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldrtl-mdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldrtl-mdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldrtl-xhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldrtl-xhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldrtl-xxhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldrtl-xxhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-ldrtl-xxxhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-ldrtl-xxxhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-mdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-mdpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-mdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-mdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-mdpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-mdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-mdpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-nodpi/splash_screen.xml:
--------------------------------------------------------------------------------
1 |
2 | -
3 |
4 |
5 | -
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xhdpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xhdpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxhdpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxhdpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxxhdpi/background.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxxhdpi/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxxhdpi/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxxhdpi/icon.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/drawable-xxxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/Android/drawable-xxxhdpi/logo.png
--------------------------------------------------------------------------------
/app/App_Resources/Android/settings.gradle:
--------------------------------------------------------------------------------
1 | import groovy.json.JsonSlurper
2 |
3 | task replaceSettings {
4 | description "Replaces configuration settings."
5 | def jsonSlurper = new JsonSlurper();
6 | def pathToSettingsJson = "$projectDir/../../app/App_Resources/Android/settings.json";
7 | def settingsJsonFile = file(pathToSettingsJson);
8 | def settingsResolvedPath = settingsJsonFile.getAbsolutePath();
9 |
10 | if(settingsJsonFile.exists())
11 | {
12 | println "\t Applying settings from $settingsResolvedPath"
13 | String settingsGradleTemplate = """android {
14 | defaultConfig {
15 | applicationId = "__appId__"
16 |
17 | if (__minSdkVersion__) {
18 | minSdkVersion = __minSdkVersion__
19 | }
20 |
21 | if (__targetSdkVersion__) {
22 | targetSdkVersion = __targetSdkVersion__
23 | }
24 | }
25 | }"""
26 |
27 | def settingsJsonContent = settingsJsonFile.getText("UTF-8");
28 | def settingsMap = jsonSlurper.parseText(settingsJsonContent);
29 |
30 | for ( setting in settingsMap ) {
31 | def placeholder = "__${setting.key}__";
32 | def settingValue = setting.value;
33 |
34 | if (settingValue == null) {
35 | settingValue = false
36 | }
37 |
38 | settingsGradleTemplate = settingsGradleTemplate.replaceAll( placeholder, settingValue as String);
39 | }
40 |
41 | new File( './temp_setting.gradle' ).write( settingsGradleTemplate, 'UTF-8');
42 | apply from: './temp_setting.gradle';
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/settings.json:
--------------------------------------------------------------------------------
1 | {"appId":"com.shiv19.setdemo","minSdkVersion":null,"targetSdkVersion":null}
--------------------------------------------------------------------------------
/app/App_Resources/Android/values-v21/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3d5afe
4 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/values-v21/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
9 |
10 |
11 |
14 |
15 |
16 |
19 |
20 |
23 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #F5F5F5
4 | #757575
5 | #33B5E5
6 | #272734
7 |
--------------------------------------------------------------------------------
/app/App_Resources/Android/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
17 |
18 |
20 |
21 |
22 |
29 |
30 |
32 |
33 |
34 |
39 |
40 |
42 |
43 |
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "29x29",
5 | "idiom" : "iphone",
6 | "filename" : "icon-29.png",
7 | "scale" : "1x"
8 | },
9 | {
10 | "size" : "29x29",
11 | "idiom" : "iphone",
12 | "filename" : "icon-29@2x.png",
13 | "scale" : "2x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "icon-29@3x.png",
19 | "scale" : "3x"
20 | },
21 | {
22 | "size" : "40x40",
23 | "idiom" : "iphone",
24 | "filename" : "icon-40@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "40x40",
29 | "idiom" : "iphone",
30 | "filename" : "icon-40@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "60x60",
35 | "idiom" : "iphone",
36 | "filename" : "icon-60@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "60x60",
41 | "idiom" : "iphone",
42 | "filename" : "icon-60@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "29x29",
47 | "idiom" : "ipad",
48 | "filename" : "icon-29.png",
49 | "scale" : "1x"
50 | },
51 | {
52 | "size" : "29x29",
53 | "idiom" : "ipad",
54 | "filename" : "icon-29@2x.png",
55 | "scale" : "2x"
56 | },
57 | {
58 | "size" : "40x40",
59 | "idiom" : "ipad",
60 | "filename" : "icon-40.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "40x40",
65 | "idiom" : "ipad",
66 | "filename" : "icon-40@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "76x76",
71 | "idiom" : "ipad",
72 | "filename" : "icon-76.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "76x76",
77 | "idiom" : "ipad",
78 | "filename" : "icon-76@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "83.5x83.5",
83 | "idiom" : "ipad",
84 | "filename" : "icon-83.5@2x.png",
85 | "scale" : "2x"
86 | },
87 | {
88 | "size" : "1024x1024",
89 | "idiom" : "ios-marketing",
90 | "filename" : "icon-1024.png",
91 | "scale" : "1x"
92 | }
93 | ],
94 | "info" : {
95 | "version" : 1,
96 | "author" : "xcode"
97 | }
98 | }
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "extent" : "full-screen",
5 | "idiom" : "iphone",
6 | "subtype" : "736h",
7 | "filename" : "Default-736h@3x.png",
8 | "minimum-system-version" : "8.0",
9 | "orientation" : "portrait",
10 | "scale" : "3x"
11 | },
12 | {
13 | "extent" : "full-screen",
14 | "idiom" : "iphone",
15 | "subtype" : "736h",
16 | "filename" : "Default-Landscape@3x.png",
17 | "minimum-system-version" : "8.0",
18 | "orientation" : "landscape",
19 | "scale" : "3x"
20 | },
21 | {
22 | "extent" : "full-screen",
23 | "idiom" : "iphone",
24 | "subtype" : "667h",
25 | "filename" : "Default-667h@2x.png",
26 | "minimum-system-version" : "8.0",
27 | "orientation" : "portrait",
28 | "scale" : "2x"
29 | },
30 | {
31 | "orientation" : "portrait",
32 | "idiom" : "iphone",
33 | "filename" : "Default@2x.png",
34 | "extent" : "full-screen",
35 | "minimum-system-version" : "7.0",
36 | "scale" : "2x"
37 | },
38 | {
39 | "extent" : "full-screen",
40 | "idiom" : "iphone",
41 | "subtype" : "retina4",
42 | "filename" : "Default-568h@2x.png",
43 | "minimum-system-version" : "7.0",
44 | "orientation" : "portrait",
45 | "scale" : "2x"
46 | },
47 | {
48 | "orientation" : "portrait",
49 | "idiom" : "ipad",
50 | "filename" : "Default-Portrait.png",
51 | "extent" : "full-screen",
52 | "minimum-system-version" : "7.0",
53 | "scale" : "1x"
54 | },
55 | {
56 | "orientation" : "landscape",
57 | "idiom" : "ipad",
58 | "filename" : "Default-Landscape.png",
59 | "extent" : "full-screen",
60 | "minimum-system-version" : "7.0",
61 | "scale" : "1x"
62 | },
63 | {
64 | "orientation" : "portrait",
65 | "idiom" : "ipad",
66 | "filename" : "Default-Portrait@2x.png",
67 | "extent" : "full-screen",
68 | "minimum-system-version" : "7.0",
69 | "scale" : "2x"
70 | },
71 | {
72 | "orientation" : "landscape",
73 | "idiom" : "ipad",
74 | "filename" : "Default-Landscape@2x.png",
75 | "extent" : "full-screen",
76 | "minimum-system-version" : "7.0",
77 | "scale" : "2x"
78 | },
79 | {
80 | "orientation" : "portrait",
81 | "idiom" : "iphone",
82 | "filename" : "Default.png",
83 | "extent" : "full-screen",
84 | "scale" : "1x"
85 | },
86 | {
87 | "orientation" : "portrait",
88 | "idiom" : "iphone",
89 | "filename" : "Default@2x.png",
90 | "extent" : "full-screen",
91 | "scale" : "2x"
92 | },
93 | {
94 | "orientation" : "portrait",
95 | "idiom" : "iphone",
96 | "filename" : "Default-568h@2x.png",
97 | "extent" : "full-screen",
98 | "subtype" : "retina4",
99 | "scale" : "2x"
100 | },
101 | {
102 | "orientation" : "portrait",
103 | "idiom" : "ipad",
104 | "extent" : "to-status-bar",
105 | "scale" : "1x"
106 | },
107 | {
108 | "orientation" : "portrait",
109 | "idiom" : "ipad",
110 | "filename" : "Default-Portrait.png",
111 | "extent" : "full-screen",
112 | "scale" : "1x"
113 | },
114 | {
115 | "orientation" : "landscape",
116 | "idiom" : "ipad",
117 | "extent" : "to-status-bar",
118 | "scale" : "1x"
119 | },
120 | {
121 | "orientation" : "landscape",
122 | "idiom" : "ipad",
123 | "filename" : "Default-Landscape.png",
124 | "extent" : "full-screen",
125 | "scale" : "1x"
126 | },
127 | {
128 | "orientation" : "portrait",
129 | "idiom" : "ipad",
130 | "extent" : "to-status-bar",
131 | "scale" : "2x"
132 | },
133 | {
134 | "orientation" : "portrait",
135 | "idiom" : "ipad",
136 | "filename" : "Default-Portrait@2x.png",
137 | "extent" : "full-screen",
138 | "scale" : "2x"
139 | },
140 | {
141 | "orientation" : "landscape",
142 | "idiom" : "ipad",
143 | "extent" : "to-status-bar",
144 | "scale" : "2x"
145 | },
146 | {
147 | "orientation" : "landscape",
148 | "idiom" : "ipad",
149 | "filename" : "Default-Landscape@2x.png",
150 | "extent" : "full-screen",
151 | "scale" : "2x"
152 | }
153 | ],
154 | "info" : {
155 | "version" : 1,
156 | "author" : "xcode"
157 | }
158 | }
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchScreen-AspectFill.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchScreen-AspectFill@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "scale" : "3x"
16 | }
17 | ],
18 | "info" : {
19 | "version" : 1,
20 | "author" : "xcode"
21 | }
22 | }
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchScreen-Center.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchScreen-Center@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "scale" : "3x"
16 | }
17 | ],
18 | "info" : {
19 | "version" : 1,
20 | "author" : "xcode"
21 | }
22 | }
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | ${PRODUCT_NAME}
9 | CFBundleExecutable
10 | ${EXECUTABLE_NAME}
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | ${PRODUCT_NAME}
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 0.1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 0.1.0
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIRequiresFullScreen
28 |
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationLandscapeLeft
36 | UIInterfaceOrientationLandscapeRight
37 | UIInterfaceOrientationPortrait
38 |
39 | UISupportedInterfaceOrientations~ipad
40 |
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 | UIInterfaceOrientationPortrait
44 | UIInterfaceOrientationPortraitUpsideDown
45 |
46 |
47 |
--------------------------------------------------------------------------------
/app/App_Resources/iOS/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/app/App_Resources/iOS/build.xcconfig:
--------------------------------------------------------------------------------
1 | // You can add custom settings here
2 | // for example you can uncomment the following line to force distribution code signing
3 | // CODE_SIGN_IDENTITY = iPhone Distribution
4 | // To build for device with Xcode 8 you need to specify your development team. More info: https://developer.apple.com/library/prerelease/content/releasenotes/DeveloperTools/RN-Xcode/Introduction.html
5 | // DEVELOPMENT_TEAM = YOUR_TEAM_ID;
6 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
7 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
8 |
--------------------------------------------------------------------------------
/app/App_Resources/iOS/ic_arrow_back_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/ic_arrow_back_white_24dp.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/ic_arrow_back_white_24dp_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/ic_arrow_back_white_24dp_2x.png
--------------------------------------------------------------------------------
/app/App_Resources/iOS/ic_arrow_back_white_24dp_3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/app/App_Resources/iOS/ic_arrow_back_white_24dp_3x.png
--------------------------------------------------------------------------------
/app/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/app/README.md:
--------------------------------------------------------------------------------
1 | # NativeScript Demo app to show master detail shared element transition
2 |
--------------------------------------------------------------------------------
/app/app.css:
--------------------------------------------------------------------------------
1 | .btn {
2 | font-size: 18;
3 | }
4 | .fa {
5 | font-family: FontAwesome;
6 | }
7 |
8 | @import "nativescript-theme-core/css/forest.css";
9 |
--------------------------------------------------------------------------------
/app/app.js:
--------------------------------------------------------------------------------
1 | require("./bundle-config");
2 | const app = require("application");
3 | const imageCache = require("nativescript-image-cache");
4 |
5 | if (app.android) {
6 | app.on("launch", () => {
7 | imageCache.initialize();
8 | });
9 | }
10 |
11 | app.start({ moduleName: "master/master" });
12 |
--------------------------------------------------------------------------------
/app/bundle-config.js:
--------------------------------------------------------------------------------
1 | if (global.TNS_WEBPACK) {
2 | //registers tns-core-modules UI framework modules
3 | require("bundle-entry-points");
4 |
5 | //register application modules
6 | global.registerModule("master/master", function() {
7 | return require("./master/master");
8 | });
9 | global.registerModule("detail/detail", function() {
10 | return require("./detail/detail");
11 | });
12 | }
13 |
--------------------------------------------------------------------------------
/app/detail/detail.js:
--------------------------------------------------------------------------------
1 | const enums = require("ui/enums");
2 | const frameModule = require("ui/frame");
3 | const app = require("application");
4 | const platform = require("platform");
5 | let activity;
6 | if (app.android) {
7 | activity = app.android.foregroundActivity;
8 | }
9 |
10 | let page;
11 | let ctx;
12 | let scaleDelta;
13 | let translateDelta;
14 | let details;
15 | let imageView;
16 | let screenHeight;
17 |
18 | exports.loaded = function(args) {
19 | page = args.object;
20 | ctx = page.navigationContext;
21 | page.bindingContext = ctx.data;
22 | details = page.getViewById("details");
23 | imageView = page.getViewById("imageView");
24 | screenHeight =
25 | platform.screen.mainScreen.heightPixels /
26 | platform.screen.mainScreen.scale;
27 |
28 | animatePageIn().then(() => {
29 | details.visibility = "visible";
30 | details.animate({
31 | opacity: 1,
32 | translate: { x: 0, y: 0 },
33 | duration: 380
34 | });
35 | });
36 |
37 | if (app.android) {
38 | activity.onBackPressed = function() {
39 | exports.onNavBtnTap();
40 | };
41 | }
42 | };
43 |
44 | exports.unloaded = function() {
45 | if (app.android) {
46 | activity.onBackPressed = function() {
47 | const fm = require("ui/frame");
48 | fm.topmost().goBack();
49 | };
50 | }
51 | };
52 |
53 | exports.onNavBtnTap = function() {
54 | animatePageOut().then(() => {
55 | frameModule.topmost().goBack();
56 | });
57 | };
58 |
59 | function animatePageIn() {
60 | return new Promise((resolve, reject) => {
61 | const destImgSize = {
62 | height: imageView.height,
63 | width: imageView.width
64 | };
65 |
66 | const destImgLoc = imageView.getLocationOnScreen();
67 | scaleDelta = getScaleDelta(ctx.srcImgSize, destImgSize);
68 |
69 | percentOnScreen = ctx.srcImgLoc.y / screenHeight * 100;
70 |
71 | translateDelta = getTranslateDelta(percentOnScreen);
72 |
73 | imageView
74 | .animate({
75 | scale: { x: scaleDelta.x, y: scaleDelta.y },
76 | translate: { x: translateDelta.x, y: translateDelta.y },
77 | duration: 1,
78 | curve: enums.AnimationCurve.easeIn
79 | })
80 | .then(() => {
81 | imageView.visibility = "visible";
82 | imageView
83 | .animate({
84 | scale: { x: 1, y: 1 },
85 | translate: { x: 0, y: 0 },
86 | duration: 1000,
87 | curve: enums.AnimationCurve.easeIn
88 | })
89 | .then(() => {
90 | resolve();
91 | });
92 | });
93 | });
94 | }
95 |
96 | function animatePageOut() {
97 | return new Promise((resolve, reject) => {
98 | details.animate({
99 | opacity: 0,
100 | translate: { x: 0, y: 200 },
101 | duration: 380
102 | });
103 | imageView
104 | .animate({
105 | scale: { x: scaleDelta.x, y: scaleDelta.y },
106 | translate: { x: translateDelta.x, y: translateDelta.y },
107 | duration: 1000,
108 | curve: enums.AnimationCurve.easeIn
109 | })
110 | .then(() => {
111 | resolve();
112 | });
113 | });
114 | }
115 |
116 | function getScaleDelta(src, dest) {
117 | return {
118 | x: src.width / dest.width,
119 | y: src.height / dest.height
120 | };
121 | }
122 |
123 | function getTranslateDelta(percent) {
124 | slope = (screenHeight - 150) / 100;
125 | y = -150 + slope * percent;
126 | return {
127 | x: -150,
128 | y: y
129 | };
130 | }
131 |
--------------------------------------------------------------------------------
/app/detail/detail.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
12 |
13 |
14 |
15 |
16 |
19 |
20 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/app/master/master-view-model.js:
--------------------------------------------------------------------------------
1 | const Observable = require("data/observable").Observable;
2 |
3 | function MasterViewModel() {
4 | const viewModel = new Observable();
5 | viewModel.masterData = [
6 | {
7 | id: "1",
8 | name: "Scott Addie",
9 | description: "Portfolio Solutions Architect, CUNA Mutual Group",
10 | imageUrl:
11 | "https://developer.telerik.com/wp-content/uploads/userphoto/1141.jpg",
12 | country: "Wisconsin, USA",
13 | expertise: ["Web Development", ".NET"],
14 | twitter: "https://twitter.com/scott_addie",
15 | github: "https://github.com/scottaddie",
16 | details:
17 | "Scott Addie is an avid blogger and technical evangelist of the modern web who has reached masses of developers through speaking engagements at user groups, code camps, and conferences across North America. With a strong emphasis on JavaScript and the Microsoft web technology stack, Scott holds numerous industry-recognized Microsoft development certifications and has been named a Microsoft MVP in the award category of Visual Studio and Development Technologies. As a firm believer in giving back to the community, Scott is a frequent open source contributor to high-profile GitHub projects, including ASP.NET Core, OmniSharp, Visual Studio Code, and a plethora of Visual Studio proper extensions."
18 | },
19 | {
20 | id: "2",
21 | name: "Nathanael Anderson",
22 | description: "DevOps, SecOps Consultant, Master Technology",
23 | imageUrl:
24 | "https://developer.telerik.com/wp-content/uploads/userphoto/961.png",
25 | country: "United States and Mexico",
26 | expertise: [
27 | "NativeScript",
28 | "Mobile Development",
29 | "Web Development",
30 | ".NET"
31 | ],
32 | twitter: "https://twitter.com/congocart",
33 | github: "https://github.com/nathanaela",
34 | details:
35 | "Nathanael J. Anderson has been developing software for over 20 years in a wide range of industries, including games, time management, imaging, service, printing, accounting, land management, security, web, and even (believe it or not) some very successful government projects. He is currently the owner of Master Technology and creates solutions for native, web, mobile, desktop, server and hybrid applications running on any operating system. He works actively in the NativeScript community, providing things such as build servers, Q&A for many technical questions; he has also founded several of the NativeScript communities. He is the author of the recently released Getting Started With NativeScript book."
36 | },
37 | {
38 | id: "3",
39 | name: "Alexander Ziskind",
40 | description: "Technical Director, Nuvious",
41 | imageUrl:
42 | "https://developer.telerik.com/wp-content/uploads/userphoto/441.png",
43 | country: "United States",
44 | expertise: ["NativeScript"],
45 | twitter: "https://twitter.com/digitalix",
46 | linkedIn: "https://www.linkedin.com/profile/view?id=alexziskind",
47 | github: "https://github.com/alexziskind1",
48 | details:
49 | "Alex loves tinkering with the latest web and mobile technologies and gets giddy over the possibilities that the cloud brings to those fields. He's passionate about distributed systems and service oriented architecture. When Alex isn't making awful noises on an analog synth, he makes it his goal to fuse together form and function in the world of mobile and web, and to bring products to life using the highest possible standards in software quality. For the last 15 years, Alex has been developing software solutions for the enterprise as well as small startups trying to get off the ground. In the last 5 years, his company Nuvious has been involved in architecting and implementing cloud solutions on an international scale."
50 | },
51 | {
52 | id: "4",
53 | name: "Shayne Boyer",
54 | description: "Senior Solutions Architect, Walt Disney World",
55 | imageUrl:
56 | "https://developer.telerik.com/wp-content/uploads/userphoto/471.jpg",
57 | country: "USA",
58 | expertise: ["Mobile", "Web"],
59 | twitter: "https://twitter.com/spboyer",
60 | details:
61 | "Shayne Boyer is a Solutions Architect with over 15 years experience working with Microsoft based solutions. He is an INETA community speaker, a Telerik Developer Expert, and Nokia Developer Champion. Over the past 10 years he has lead development teams working on enterprise solutions with a focus on productivity, performance and sustainability. Shayne often publishes content on ASP.NET, Web API, Node.js and Azure development and can always be found on twitter @spboyer or on his blog at tattoocoder.com"
62 | },
63 | {
64 | id: "5",
65 | name: "Brad Martin",
66 | description: "Manager of Software Development, Nastek National",
67 | imageUrl:
68 | "https://developer.telerik.com/wp-content/uploads/userphoto/861.jpg",
69 | country: "USA",
70 | expertise: [
71 | "NativeScript",
72 | "Mobile Development",
73 | "Web Development",
74 | ".NET"
75 | ],
76 | twitter: "https://twitter.com/BradWayneMartin",
77 | github: "https://github.com/bradmartin",
78 | details:
79 | "Brad works as the Director of Development for Nastek National, which specializes in the transportation industry for trucking companies. Brad mainly works maintaining a .NET web app and leads the development and design on their NativeScript Android and iOS apps."
80 | },
81 | {
82 | id: "6",
83 | name: "Steve McNiven-Scott",
84 | description: "Sitefinity Certified Developer, McMaster University",
85 | imageUrl:
86 | "https://developer.telerik.com/wp-content/uploads/userphoto/411.jpg",
87 | country: "Canada",
88 | expertise: ["Sitefinity", "UI for ASP.NET", "AJAX"],
89 | twitter: "https://twitter.com/stevemcniven",
90 | linkedIn: "https://www.linkedin.com/profile/view?id=62993704",
91 | github: "https://github.com/sitefinitysteve",
92 | details:
93 | "Steve is an overly enthusiastic web developer who enjoys talking about himself in the third person. He has been working near exclusively with the Telerik suite since 2008, and has since earned Telerik MVP status, Sitefinity Partner status, and is a certified Sitefinity developer. Learn more at SitefinitySteve.com."
94 | },
95 | {
96 | id: "7",
97 | name: "Nic Raboy",
98 | description: "Owner, The Polyglot Developer",
99 | imageUrl:
100 | "https://developer.telerik.com/wp-content/uploads/userphoto/981.jpg",
101 | country: "United States",
102 | expertise: [
103 | "NativeScript",
104 | "Mobile Development",
105 | "Web Development"
106 | ],
107 | twitter: "https://twitter.com/nraboy",
108 | linkedIn: "https://www.linkedin.com/profile/view?id=nraboy",
109 | github: "https://github.com/nraboy",
110 | details:
111 | "Nic is a skilled application developer that has released several native and hybrid mobile applications to iTunes and Google Play. He writes about his development experiences related to making web and mobile app development easier to understand and has experience in Android, Node.js, Apache Cordova, Java, NoSQL, SQL, PHP, NativeScript, and Unity3D."
112 | },
113 | {
114 | id: "8",
115 | name: "Josh Sommer",
116 | description: "Web Application Developer, Renovo Solutions LLC",
117 | imageUrl:
118 | "https://developer.telerik.com/wp-content/uploads/userphoto/1031.jpg",
119 | country: "United States",
120 | expertise: [
121 | "NativeScript",
122 | "Mobile Development",
123 | "Web Development",
124 | ".NET"
125 | ],
126 | twitter: "https://twitter.com/_JoshSommer",
127 | github: "https://github.com/TheOriginalJosh",
128 | details:
129 | "Josh Sommer has been a web application developer for 10 years. He specializes in the .NET stack, but has also dabbled in just about anything under the sun. Lately he has been working primarily on front end development with TypeScript and AngularJS. In his free time he enjoys spending time with his wife and son, doing things around the house. When not with them, he can often be found working on NativeScript projects."
130 | },
131 | {
132 | id: "9",
133 | name: "Nathan Walker",
134 | description: "Senior Software Engineer, Infowrap",
135 | imageUrl:
136 | "https://developer.telerik.com/wp-content/uploads/userphoto/891.jpeg",
137 | country: "United States",
138 | expertise: [
139 | "Angular",
140 | "NativeScript",
141 | "Mobile",
142 | "Web",
143 | "Telerik Platform"
144 | ],
145 | twitter: "https://twitter.com/wwwalkerrun",
146 | github: "https://github.com/NathanWalker",
147 | details:
148 | "Nathan is a Senior Software Engineer at Infowrap with over 15 years experience in web/mobile application development. His varied background rooted in the world of design and the arts (from magazine layouts to video production/documentaries as well as former Nashville musician) helps provide a unique foundation to problem solving. From Javascript, Objective C, Swift, Java, Ruby, Angular to NativeScript, Nathan crafts his code like he would design an ad, craft a cinematic story, or write a billboard hit. Always striving to balance his right brain approaches with his left brain sensibilities, he focuses on bringing solid results to a diversity of business environments."
149 | },
150 | {
151 | id: "10",
152 | name: "Jochem Bökkers",
153 | description: "Sitefinity Senior Consultant, Sogeti",
154 | country: "Switzerland",
155 | expertise: ["Sitefinity"],
156 | twitter: "https://twitter.com/jbokkers",
157 | linkedIn: "https://www.linkedin.com/profile/view?id=12980107",
158 | googlePlus: "https://plus.google.com/+JochemBokkers",
159 | imageUrl:
160 | "https://developer.telerik.com/wp-content/uploads/userphoto/461.jpg",
161 | details:
162 | "Jochem Bökkers started in the IT Industry in the late 90s and has been solely focused on the Sitefinity platform for the last 6 years. As a Certified Sitefinity Solution Developer he has been fortunate enough to help deliver Sitefinity projects in Europe, the US, Australia and the Middle East. In his role as Telerik MVP he is an active community member, jump started open-source projects like Twitter Bootstrap compatibility and continuously beta tests and pushes the system for maximum performance. Jochem joined Sogeti, to enrich Sogeti's digital solutions portfolio with Sitefinity and Telerik platform offerings."
163 | }
164 | ];
165 | return viewModel;
166 | }
167 |
168 | module.exports = MasterViewModel;
169 |
--------------------------------------------------------------------------------
/app/master/master.js:
--------------------------------------------------------------------------------
1 | const frameModule = require("ui/frame");
2 | const MasterViewModel = require("./master-view-model");
3 |
4 | const masterVm = new MasterViewModel();
5 | let page;
6 |
7 | exports.onNavigatingTo = function(args) {
8 | page = args.object;
9 | page.bindingContext = masterVm;
10 | };
11 |
12 | exports.onItemTap = function(args) {
13 | const ctx = args.view.bindingContext;
14 | const container = args.object;
15 | imageView = page.getViewById(ctx.id + "image");
16 |
17 | frameModule.topmost().navigate({
18 | moduleName: "./detail/detail",
19 | animated: false,
20 | context: {
21 | data: ctx,
22 | srcImgSize: {
23 | height: imageView.height,
24 | width: imageView.width
25 | },
26 | srcImgLoc: imageView.getLocationOnScreen()
27 | }
28 | });
29 | };
30 |
--------------------------------------------------------------------------------
/app/master/master.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
15 |
16 |
18 |
20 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "android": {
3 | "v8Flags": "--expose_gc"
4 | },
5 | "main": "app.js",
6 | "name": "tns-template-blank",
7 | "version": "3.3.2"
8 | }
--------------------------------------------------------------------------------
/app/references.d.ts:
--------------------------------------------------------------------------------
1 | /// Enable smart suggestions and completions in Visual Studio Code JavaScript projects.
2 |
--------------------------------------------------------------------------------
/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/assets/.DS_Store
--------------------------------------------------------------------------------
/assets/set-demo-ios.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/assets/set-demo-ios.gif
--------------------------------------------------------------------------------
/assets/set-demo-ios.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/assets/set-demo-ios.mov
--------------------------------------------------------------------------------
/assets/set-demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/assets/set-demo.gif
--------------------------------------------------------------------------------
/assets/set-demo.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiv19/nativescript-set-demo/e9668966a44761579bfc5f788fe49006cb12d365/assets/set-demo.mp4
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "NativeScript Application",
3 | "license": "MIT",
4 | "readme": "NativeScript Shared Elements Transition Demo",
5 | "repository": "https://github.com/shiv19/nativescript-set-demo",
6 | "nativescript": {
7 | "id": "com.shiv19.setdemo",
8 | "tns-android": {
9 | "version": "3.3.1"
10 | },
11 | "tns-ios": {
12 | "version": "3.3.0"
13 | }
14 | },
15 | "dependencies": {
16 | "nativescript-image-cache": "^1.1.2",
17 | "nativescript-theme-core": "1.0.4",
18 | "tns-core-modules": "3.3.0"
19 | },
20 | "author": "MultiShiv19",
21 | "devDependencies": {
22 | "babel-traverse": "6.26.0",
23 | "babel-types": "6.26.0",
24 | "babylon": "6.18.0",
25 | "lazy": "1.0.11"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------