Hello everybody,
I’m having an annoying problem with my ion-inputs
. It doesn’t matter if the input is inside or outside a form, they just doesn’t work. I know it’s an ion-input
problem because when I test it on a traditional <input>
html tag it works as expected.
The problem is that when I try to write something inside an ion-input, first it looks like double
Then, when I try to write something inside an ion-input
, it looks like this, the blanc space are letters that doesn’t apear en the input. They apear when I get out of the input.
When I erase delete some text, nothing seems deleted, only when tap out the input. The marker gets back but all the text is still written.
I am guessing that the problem is because of the version, but I’m kind of confused about what should I update. Here is my package.json.
{
"name": " ",
"version": "0.0.0",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve"
},
"dependencies": {
"@angular/common": "4.1.0",
"@angular/compiler": "4.1.0",
"@angular/compiler-cli": "4.1.0",
"@angular/core": "4.1.0",
"@angular/forms": "4.1.0",
"@angular/http": "4.1.0",
"@angular/platform-browser": "4.1.0",
"@angular/platform-browser-dynamic": "4.1.0",
"@ionic-native/barcode-scanner": "^4.1.0",
"@ionic-native/core": "^3.7.0",
"@ionic-native/splash-screen": "3.7.0",
"@ionic-native/status-bar": "3.7.0",
"@ionic/storage": "2.0.1",
"ionic-angular": "3.2.1",
"ionicons": "3.0.0",
"rxjs": "5.1.1",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.10"
},
"devDependencies": {
"@ionic/app-scripts": "1.3.7",
"@ionic/cli-plugin-cordova": "1.6.2",
"@ionic/cli-plugin-ionic-angular": "1.4.1",
"typescript": "2.2.1"
},
"cordovaPlugins": [
"cordova-plugin-whitelist",
"cordova-plugin-console",
"cordova-plugin-statusbar",
"cordova-plugin-device",
"cordova-plugin-splashscreen",
"ionic-plugin-keyboard"
],
"cordovaPlatforms": [
"ios",
{
"platform": "ios",
"version": "",
"locator": "ios"
}
],
}
By the way, it works perfectly on a web browser, ionic serve doesn’t return an error.
Thanks!