toggleTopbar()
toggleTopbar(newState?: boolean)
//This will toggle the topbar visibility state
sambaFrame.toggleTopbar();
//This will show the topbar, equivalent to sambaFrame.showTopbar();
sambaFrame.toggleTopbar(true);
//This will hide the topbar, equivalent to sambaFrame.hideTopbar();
sambaFrame.toggleTopbar(false);Last updated