Ionic – issue with currency / decimal data
Ionic natively doesn’t provide any graceful input component for capturing user input for currency or decimal data (with defined precision and separator). With native , capturing user input in decimal format can get ugly, prone to validation errors and of course not a great user experience. <ion-input placeholder=”\$0.00″ inputmode=”decimal” [(ngModel)]=”entry” name=”amount”> As we see here, with …