File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ Search or browse for a plugin and click Install.
22
22
23
23
## Usage
24
24
25
+ For sample application with single and multiple image selection ready for Android and IOS
26
+ [ follow this link] ( https://github.com/NativeScript/sample-ImageUpload )
27
+
25
28
### How-to Pick Multiple Images
26
29
```
27
30
var imagepickerModule = require("nativescript-imagepicker");
@@ -51,7 +54,6 @@ function selectImages() {
51
54
var context = imagepicker.create({
52
55
mode: "single"
53
56
});
54
-
55
57
```
56
58
### How-to Bind Selected Images
57
59
#### main-page.xml
@@ -68,7 +70,6 @@ var context = imagepicker.create({
68
70
69
71
<Button row="1" text="Pick Multiple Images" tap="onSelectMultipleTap" />
70
72
<Button row="2" text="Pick Single Image" tap="onSelectSingleTap" />
71
-
72
73
```
73
74
#### main-page.js
74
75
```
@@ -117,5 +118,4 @@ function startSelection(context) {
117
118
exports.pageLoaded = pageLoaded;
118
119
exports.onSelectMultipleTap = onSelectMultipleTap;
119
120
exports.onSelectSingleTap = onSelectSingleTap;
120
-
121
121
```
You can’t perform that action at this time.
0 commit comments