Angular @Output & EventEmitter not working
You've got your handler on the wrong element (nav instead of app-navbar)
<app-navbar (showEvent)="getToggle($event)"></app-navbar>
You should put the showEvent
on the actual component selector app-navbar
that has the @Output
decorator and not on the nav
element:
<app-navbar (showEvent)="getToggle($event)"></app-navbar>