Screens and pages

Hey, I’m developing a vst3 plugin, and i was wondering whether i can create my plugin with different pages, like instead of each time disappearing all the buttons and texts and adding new ones is there an easier way to create a pages in my plugin?

How about TabbedComponent? You can also hide the TabbedButtonBar and switch programmatically instead. It doesn’t have a hidden property, but setTabBarDepth(0); should do the trick.

Oh so like making component and then you can switch between them ?

The TabbedComponent takes the whole screen and you add those pages to it, so you can switch between them.
The TabbedComponent takes care of everything, like switching one visible, resize everything accordingly etc.

great tnx