I have searched on here and can’t find a working example of how to toggle a menu from a click on a tab icon.
I have this below but it selects the tab and then will not fire again when selected.
The click event does not work either.
I do not want to navigate to another page when this tab is clicked, simply show the menu.
@ wekas
You create one page like etc name then in your home.ts page push through a command through a proper function this function home.html like (click)=“SignUp()” then in home.ts file SignUp() {
this.navCtrl.push(Pagename);
} You want to push into which page
Try it be like this.
I think i follow your logic. You are saying to call the function to toggle the menu from the page the tab opens.
The problem is I don’t want the tab to open a page I just want it function like a normal menu toggle.
e.g. Behave the same as this.
All I want is this button to be on the left of the tab at the bottom rather than in the header. So I don’t have to have a tab and a header.