I’ve just worked with Ionic for few days and stuck with this. Every time I open a modal I couldn’t swipe the sidemenu and any pages that I push or setroot in that modal are not able to open sidemenu too.
I have a page. - PedidoCadastroPage.
And Call this method:
public abrirListagemProdutos() {
if (this.abaEscolhida == "PRODUTOS")
if (!this.formPedido.get('fk_id_cliente').value) {
this.exibirToastSelecionarCliente();
} else {
let modal = this.modalCtrl.create("ProdutoListagemPage", {
pedido: this.formPedido.value,
mapPedidoProduto: this.gerarMapPedidoProduto()
});
modal.onDidDismiss(pedidoProdutos => {
this.formPedido.get('pedidoProdutos').setValue(pedidoProdutos);
this.atualizarSomaTotalEQuantidadeDeItens();
});
modal.present();
}
}
And try to open the side menu, but nothing happen.
When I close the modal the side menu is open in PedidoCadastroPage