├── screenshots ├── .gitkeep ├── android23 │ ├── Button.png │ ├── Image.png │ ├── Label.png │ ├── Slider.png │ ├── Switch.png │ ├── HtmlView.png │ ├── ListView.png │ ├── Progress.png │ ├── SearchBar.png │ ├── TabView.png │ ├── TextField.png │ ├── TextView.png │ ├── WebView.png │ ├── AlertDialog.png │ ├── DatePicker.png │ ├── ListPicker.png │ ├── LoginDialog.png │ ├── ScrollView.png │ ├── TimePicker.png │ ├── ActionDialog.png │ ├── ConfirmDialog.png │ ├── PromptDialog.png │ ├── SegmentedBar.png │ └── ActivityIndicator.png └── ios-simulator103iPhone6 │ ├── Image.png │ ├── Label.png │ ├── Button.png │ ├── Slider.png │ ├── Switch.png │ ├── TabView.png │ ├── WebView.png │ ├── DatePicker.png │ ├── HtmlView.png │ ├── ListPicker.png │ ├── ListView.png │ ├── Progress.png │ ├── ScrollView.png │ ├── SearchBar.png │ ├── TextField.png │ ├── TextView.png │ ├── TimePicker.png │ ├── ActionDialog.png │ ├── AlertDialog.png │ ├── LoginDialog.png │ ├── PromptDialog.png │ ├── SegmentedBar.png │ ├── ConfirmDialog.png │ └── ActivityIndicator.png ├── .gitignore ├── app ├── App_Resources │ ├── iOS │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── icon.imageset │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ ├── icon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.Center.imageset │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.AspectFill.imageset │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── Contents.json │ │ ├── build.xcconfig │ │ ├── Info.plist │ │ └── LaunchScreen.storyboard │ └── Android │ │ ├── values-v21 │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── drawable-hdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-ldpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-mdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xxhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xxxhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── values │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── drawable-nodpi │ │ └── splash_screen.xml │ │ ├── app.gradle │ │ └── AndroidManifest.xml ├── package.json ├── elements │ ├── dialogs │ │ ├── Alert.js │ │ ├── Confirm.js │ │ ├── Prompt.js │ │ ├── Login.js │ │ └── Action.js │ └── components │ │ ├── SearchBar.js │ │ ├── DatePicker.js │ │ ├── TimePicker.js │ │ ├── Button.js │ │ ├── Label.js │ │ ├── Slider.js │ │ ├── Progress.js │ │ ├── Switch.js │ │ ├── TextField.js │ │ ├── Image.js │ │ ├── TextView.js │ │ ├── ActivityIndicator.js │ │ ├── ListPicker.js │ │ ├── SegmentedBar.js │ │ ├── HtmlView.js │ │ ├── ListView.js │ │ ├── TabView.js │ │ ├── WebView.js │ │ └── ScrollView.js ├── app.css └── app.js ├── deploy.sh ├── appium.capabilities.json ├── package.json ├── README.md ├── .travis.yml └── generate-screenshots.js /screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | npm-debug.log 3 | package-lock.json 4 | node_modules 5 | platforms/ 6 | app/tns_modules/ 7 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /screenshots/android23/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Button.png -------------------------------------------------------------------------------- /screenshots/android23/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Image.png -------------------------------------------------------------------------------- /screenshots/android23/Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Label.png -------------------------------------------------------------------------------- /screenshots/android23/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Slider.png -------------------------------------------------------------------------------- /screenshots/android23/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Switch.png -------------------------------------------------------------------------------- /screenshots/android23/HtmlView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/HtmlView.png -------------------------------------------------------------------------------- /screenshots/android23/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ListView.png -------------------------------------------------------------------------------- /screenshots/android23/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/Progress.png -------------------------------------------------------------------------------- /screenshots/android23/SearchBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/SearchBar.png -------------------------------------------------------------------------------- /screenshots/android23/TabView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/TabView.png -------------------------------------------------------------------------------- /screenshots/android23/TextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/TextField.png -------------------------------------------------------------------------------- /screenshots/android23/TextView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/TextView.png -------------------------------------------------------------------------------- /screenshots/android23/WebView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/WebView.png -------------------------------------------------------------------------------- /screenshots/android23/AlertDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/AlertDialog.png -------------------------------------------------------------------------------- /screenshots/android23/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/DatePicker.png -------------------------------------------------------------------------------- /screenshots/android23/ListPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ListPicker.png -------------------------------------------------------------------------------- /screenshots/android23/LoginDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/LoginDialog.png -------------------------------------------------------------------------------- /screenshots/android23/ScrollView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ScrollView.png -------------------------------------------------------------------------------- /screenshots/android23/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/TimePicker.png -------------------------------------------------------------------------------- /screenshots/android23/ActionDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ActionDialog.png -------------------------------------------------------------------------------- /screenshots/android23/ConfirmDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ConfirmDialog.png -------------------------------------------------------------------------------- /screenshots/android23/PromptDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/PromptDialog.png -------------------------------------------------------------------------------- /screenshots/android23/SegmentedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/SegmentedBar.png -------------------------------------------------------------------------------- /app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /screenshots/android23/ActivityIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/android23/ActivityIndicator.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Image.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Label.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Button.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Slider.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Switch.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/TabView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/TabView.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/WebView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/WebView.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": { 3 | "v8Flags": "--expose_gc" 4 | }, 5 | "main": "app.js", 6 | "name": "nativescript-vue-ui-tests", 7 | "version": "3.2.0" 8 | } -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/DatePicker.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/HtmlView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/HtmlView.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ListPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ListPicker.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ListView.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/Progress.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ScrollView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ScrollView.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/SearchBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/SearchBar.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/TextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/TextField.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/TextView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/TextView.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/TimePicker.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ActionDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ActionDialog.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/AlertDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/AlertDialog.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/LoginDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/LoginDialog.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/PromptDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/PromptDialog.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/SegmentedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/SegmentedBar.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ConfirmDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ConfirmDialog.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /screenshots/ios-simulator103iPhone6/ActivityIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/screenshots/ios-simulator103iPhone6/ActivityIndicator.png -------------------------------------------------------------------------------- /app/elements/dialogs/Alert.js: -------------------------------------------------------------------------------- 1 | const dialogs = require('tns-core-modules/ui/dialogs'); 2 | 3 | module.exports = { 4 | mounted() { 5 | setTimeout(() => dialogs.alert('Hello!')) 6 | } 7 | }; -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40.png -------------------------------------------------------------------------------- /app/elements/components/SearchBar.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | template: ` 3 | 4 | 5 | 6 | 7 | 8 | ` 9 | }; 10 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/icon.imageset/icon-40@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /app/elements/dialogs/Confirm.js: -------------------------------------------------------------------------------- 1 | const dialogs = require('tns-core-modules/ui/dialogs'); 2 | 3 | module.exports = { 4 | mounted() { 5 | setTimeout(() => dialogs.confirm('Are you ready?')) 6 | } 7 | }; -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/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/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/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/nativescript-vue/nativescript-vue-ui-tests/HEAD/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/nativescript-vue/nativescript-vue-ui-tests/HEAD/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/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /app/elements/components/DatePicker.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | template: ` 3 | 4 | 5 | 6 | 7 | 8 | ` 9 | }; 10 | -------------------------------------------------------------------------------- /app/elements/components/TimePicker.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | template: ` 3 | 4 | 5 | 6 | 7 | 8 | ` 9 | }; 10 | -------------------------------------------------------------------------------- /app/elements/dialogs/Prompt.js: -------------------------------------------------------------------------------- 1 | const dialogs = require('tns-core-modules/ui/dialogs'); 2 | 3 | module.exports = { 4 | mounted() { 5 | setTimeout(() => dialogs.prompt('How are you?', 'Amazing!')) 6 | } 7 | }; -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-vue/nativescript-vue-ui-tests/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /app/elements/components/Button.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | template: ` 3 | 4 | 5 |