nativescript-numeric-keyboard
Version:
Handy and elegant numeric keyboard for iOS NativeScript apps. On Android we fall back to the regular numeric keyboard.
18 lines • 493 B
JavaScript
import { NumericKeyboardViewBase } from "./numeric-keyboard.common";
export class NumericKeyboard {
decorate(args) {
return new Promise((resolve, reject) => {
resolve();
});
}
}
export class NumericKeyboardView extends NumericKeyboardViewBase {
createNativeView() {
let v = super.createNativeView();
this.keyboardType = "number";
return v;
}
_onReturnPress() {
}
}
//# sourceMappingURL=numeric-keyboard.android.js.map