When my component is in an edit
state I need the screen to show the correct height of the control. It does not. It only snaps to the right height if you start editing the contents.
My ion control:
<ion-textarea v-model="current_entry.happening"
label="What happened?"
type="text"
class="paper"
auto-grow="true"
spellcheck="true"
/>
The css class is:
.paper {
font-size: 1.5em;
font-family: RobotoLight;
}
On ionViewDidEnter()
I set current_entry.happening
to its database-stored value, but the screen is rendered with the control collapsed to its empty default height:
1 post - 1 participant