Controls don't show when using an example from docs. ```<ion-content [fullscreen]="true" id="main-content"> <fiv-gallery #gallery> <ion-row> <ion-col size="12"> <fiv-gallery-image [src]="image1"></fiv-gallery-image> </ion-col> <ion-col size="12"> <fiv-gallery-image [src]="image2"></fiv-gallery-image> </ion-col> </ion-row> <fiv-gallery-toolbar position="top"> <ion-toolbar color="transparent"> <ion-buttons slot="end"> <ion-button (click)="gallery.close()"> <ion-icon slot="icon-only" name="close"></ion-icon> </ion-button> </ion-buttons> </ion-toolbar> </fiv-gallery-toolbar> </fiv-gallery> ``` If I am using this approach ```<fiv-gallery #gallery> <fiv-gallery-toolbar-content></fiv-gallery-toolbar-content> <fiv-gallery-image [src]="image1"></fiv-gallery-image> <fiv-gallery-image [src]="image2"></fiv-gallery-image> </fiv-gallery> ``` I can see controls, but above images and not when image is cliked.
Controls don't show when using an example from docs.
If I am using this approach
I can see controls, but above images and not when image is cliked.