I have an Ionic 4 Popover on a button on the bottom of the screen. When I click the button to open the popover, it appears off-screen underneath...
.html
<div class="TabBarItem" (click)="popover($event)"> <label>Tab Item</label> </div> .ts
function popover(ev) { this.popoverController .create({ component: PopoverComponent, event: ev, translucent: true, }) .then(el => { el.present(); }); } Result...
Is there a way to fix this, or manually reposition it?
