@Lindstron1988 wrote:
Hi I am having problems getting a modal component to work, I know there are some change that could have broken it but the path to the Modal class is correct so it should work?
I am importing my modal page rather than having it in the same file I am calling it from if that makes a difference?import {Page, Platform, Modal, NavController, NavParams} from 'ionic-framework/ionic'; import {LoginPage} from '../login-page/login-page'; export class HomePage { ... constructor(private platform: Platform, private nav: NavController, navParams: NavParams) { this.nav = nav; ... } showModal() { let modal = Modal.create(LoginPage); this.nav.present(modal) } }
Posts: 9
Participants: 2