我正在使用带有如下文本输入的提示:
const prompt = this.alertCtrl.create({
title: action.action,
message: action.task_help,
inputs: [
{
name: 'solution',
placeholder: action.placeholder
},
],
buttons: [
{
text: 'Cancelar',
},
{
text: 'Terminar',
handler: data => {
console.log(data);
self.action(action.id, data['solution']).then(function(response){
console.log(response);
self.mensaje(response['message']);
});
}
}
]
});
prompt.present();
但是在Android
中的键盘上方留有空格。其他文本输入不会发生这种情况,因此我想这与提示中的输入有关。
有什么想法或解决方法吗?
答案 0 :(得分:0)
您需要按以下步骤更新IonicModule.forRoot
文件中的app.module.ts
:
IonicModule.forRoot(MyApp, {
scrollPadding: false,
scrollAssist: false,
autoFocusAssist: false
})
希望这会有所帮助。