gpt4 book ai didi

ios - ionic3 允许键盘向上推 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:53:13 25 4
gpt4 key购买 nike

我正在使用 Ionic 3.9.2 版

我想在 iOS 上上推 View ,这样我的页脚就不会被隐藏。

enter image description here

不想让键盘盖住我的页脚

enter image description here

在 Android 上,我可以使用 android:windowSoftInputMode="adjustResize",这会神奇地缩小 View 。有什么办法可以做到这一点? enter image description here

最佳答案

您可以使用 Ionic Keyboard PluginonKeyboardShow()onKeyboardHide()了解何时调整屏幕大小以排除键盘。

尝试进行以下更改,看看它是否符合您的要求。您需要调整 keyboard_height 和 easing 才能正常工作

app.html

<ion-nav .... [style.height]="nav_style"></ion-nav>

app.component.ts

keyboard_height: number = 200;
nav_style: string = null;

constructor(private keyboard: Keyboard, private platform: Platform, ...){
if(this.platform.is('ios')){
this.keyboard.onKeyboardShow(() => {
this.nav_style = 'calc(100%-' + this.keyboard_height + 'px)';
});
this.keyboard.onKeyboardHide(() => {
this.nav_style = null;
});
}
}

app.scss

ion-nav{
transition: height 0.2s ease-out
}

关于ios - ionic3 允许键盘向上推 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50635830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com