Ionic version: (check one with "x")
[ ] 1.x
[x] 2.x
I'm submitting a ... (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or http://ionicworldwide.herokuapp.com/
Current behavior:
Demonstrates modal with slides and ion-textarea disappearing when focused.
Expected behavior:
Text are keeps visible and shows cursor.
Steps to reproduce:
Checkout example posted in related code.
Do following steps:
Related code:
https://github.com/ilkkanisula/iontextareaproblem
Other information:
Tested on Chrome osx and Android 6 emulator.
Ionic info: (run ionic info from a terminal/cmd prompt and paste output below):
Your system information:
Cordova CLI: 6.4.0
Ionic Framework Version: 2.2.0
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.1.4
ios-deploy version: 1.9.0
ios-sim version: 5.0.8
OS: OS X El Capitan
Node Version: v6.6.0
Xcode version: Xcode 8.2.1 Build version 8C1002
Thanks for opening an issue with us! We will look into this.
Facing same issue with latest release of ionic 2.x
The only way I found was to put ion-textarea inside ion-row and ion-col like this :
<ion-row>
<ion-col col-12>
<ion-textarea></ion-textarea>
</ion-col>
</ion-row>
@vladtheimpala's solution works
Wrapping the text area in the row and col works, but it then messes it up for android.
Has to do an *ngIf to show dependant on platform
Cheers
Thanks for the issue! We have moved the source code and issues for Ionic 3 into a separate repository. I am moving this issue to the repository for Ionic 3. Please track this issue over there.
Thank you for using Ionic!
This issue has been automatically identified as an Ionic 3 issue. We recently moved Ionic 3 to its own repository. I am moving this issue to the repository for Ionic 3. Please track this issue over there.
If I've made a mistake, and if this issue is still relevant to Ionic 4, please let the Ionic Framework team know!
Thank you for using Ionic!
Issue moved to: https://github.com/ionic-team/ionic-v3/issues/274
Most helpful comment
The only way I found was to put ion-textarea inside ion-row and ion-col like this :
<ion-row> <ion-col col-12> <ion-textarea></ion-textarea> </ion-col> </ion-row>