Hi
I have a form with tabs and a sidemenu. After a splash form this form is opened . The first tab is then showed. But the sidemenu 'clickable' (tjhree lines ) is not shown. Only when i swipe to the second tab the clickable is shown.
My question hoe do i get it visible from the start.
the code i am using.
hi = new Form("App", new LayeredLayout());
Tabs t = new Tabs();
t.hideTabs();
t.addTab("Start", Container1);
Toolbar tb = hi.getToolbar();
Container topBar = BorderLayout.east(new Label(""));
tb.addComponentToSideMenu(topBar);
tb.addCommandToSideMenu("Start",null, e -> { t.setSelectedIndex(0);
tb.closeSideMenu(); kaartvw= false;});
hi.add(t);
t.setSelectedIndex(0);
Ciao
Peter Bell