我第一次使用ionic框架开发混合应用程序(最新版本)。使用提供的DevApp测试当前工作后,无论如何我都无法使附件栏显示在iPhone键盘上方。我尝试安装https://ionicframework.com/docs/native/keyboard/,将其添加到模块中,并在app.components.ts中,我的构造函数如下所示:
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, keyboard : Keyboard) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
keyboard.hideFormAccessoryBar(false);
});
}
控制台中没有错误,仅没有出现该栏。仅仅是因为DevApp,还是我又犯了一个错误?
如果需要更多信息,我将很乐意提供。预先感谢!