cordova plugin add --save cordova-plugin-decimal-keyThis cordova plugin has been built for showing up a decimal keyboard on iOS devices. It supports light and dark themes.
<input
type="text"
pattern="[0-9]*"
decimal="true">Input type number will not work, try to use text with [0-9] pattern instead.
<input
type="text"
pattern="[0-9]*"
decimal="true"
allow-multiple-decimals="true"><input
type="text"
pattern="[0-9]*"
decimal="true"
allow-multiple-decimals="false"
decimal-char=",">If you want to localize decimal character, you can change using decimal-char attribute
<input
type="text"
pattern="[0-9]*"
decimal="true"
allow-multiple-decimals="false"
decimal-char="."
button-char=",">If you want to use another character for button, you can change it using button-char attribute
- Does not handle screen rotation.
This project is licensed under the MIT License - see the LICENSE file for details


