Skip to content

Commit d7bb54d

Browse files
committed
sample app link added to README.md
1 parent 04f5ede commit d7bb54d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Search or browse for a plugin and click Install.
2222

2323
## Usage
2424

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+
2528
### How-to Pick Multiple Images
2629
```
2730
var imagepickerModule = require("nativescript-imagepicker");
@@ -51,7 +54,6 @@ function selectImages() {
5154
var context = imagepicker.create({
5255
mode: "single"
5356
});
54-
5557
```
5658
### How-to Bind Selected Images
5759
#### main-page.xml
@@ -68,7 +70,6 @@ var context = imagepicker.create({
6870
6971
<Button row="1" text="Pick Multiple Images" tap="onSelectMultipleTap" />
7072
<Button row="2" text="Pick Single Image" tap="onSelectSingleTap" />
71-
7273
```
7374
#### main-page.js
7475
```
@@ -117,5 +118,4 @@ function startSelection(context) {
117118
exports.pageLoaded = pageLoaded;
118119
exports.onSelectMultipleTap = onSelectMultipleTap;
119120
exports.onSelectSingleTap = onSelectSingleTap;
120-
121121
```

0 commit comments

Comments
 (0)