How do I enable a keyboard that has the . so that the user can enter numbers with a decimal point like 123.45 is there some sort of plugin that ionic has to overcome this problem?
Maybe is that you need:
<input type="tel" pattern="[0-9]*">
this will enable a keyboard with all number digits and some special characters
Thanks will give it a try