File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ import { DeepLinker } from '../../navigation/deep-linker';
114
114
* ```
115
115
*
116
116
* A common issue is that a developer may try to implement navigation in a modal, but when you try NavController.push(),
117
- * you will notice that the status bar on iOS gets cut off. The proper way to implement navigation in a modal is to
117
+ * you will notice that the status bar on iOS gets cut off. The proper way to implement navigation in a modal is to
118
118
* make the modal component a navigation container, and set the root page to the page you want to show in your modal.
119
119
*
120
120
* ```ts
@@ -124,7 +124,7 @@ import { DeepLinker } from '../../navigation/deep-linker';
124
124
* export class MyModalWrapper {
125
125
* rootPage = 'MyModalContentPage'; // This is the page you want your modal to display
126
126
* rootParams;
127
- *
127
+ *
128
128
* constructor(navParams: NavParams, private viewCtrl: ViewController) {
129
129
* this.rootParams = Object.assign({}, navParams.data, {viewCtrl: viewCtrl});
130
130
* // This line will send the view controller into your child views, so you can dismiss the modals from there.
You can’t perform that action at this time.
0 commit comments