We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1576bb3 commit 142d844Copy full SHA for 142d844
nativescript-imagepicker/index.d.ts
@@ -80,6 +80,8 @@ interface Options {
80
*/
81
mode?: string;
82
83
+ doneText?: string;
84
+
85
android?: {
86
/**
87
* Provide a reason for permission request to access external storage on api levels above 23.
nativescript-imagepicker/viewmodel.ios.ts
@@ -70,7 +70,7 @@ export class ImagePicker extends data_observable.Observable {
70
}
71
72
get doneText(): string {
73
- return "Done";
+ return this._options && this._options.doneText ? this._options.doneText : "Done";
74
75
76
get cancelText(): string {
0 commit comments