Ion-modal called but not showing

FitModalPage is my modal-page

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-fit-modal',
  templateUrl: './fit-modal.page.html',
  styleUrls: ['./fit-modal.page.scss'],
})
export class FitModalPage implements OnInit {

  constructor() { }

  ngOnInit() {
    console.log(`fit modal page`);
  }

}

i saw this log ‘fit modal pge’ in chrome debug console
but, not showing modal popup display !!

add to fit-modal in entryComponents
add to fit-modal in declarations …

perfect ! can not find error !!
why not showing modal page ?

Have you written CSS for modal,

Pls check CSS for modal.

1 Like

Thaks your comment …
but i can’t find anything…