Hello guys. I’m new to the GTK or desktop apps development in general. I wonder what do you think is the best practice for an apps with multiple “pages” (terms stolen from webpage) / windows?
- Should we use multiple
Gtk.Window
, and show / hide them? - Or just use one
Gtk.Window
and show / hide some container widgets? - One
Gtk.Window
and create / delete children? - Or something else…
I don’t know why & when I should use which approach. Any insights from experience is highly appreciated. Thanks beforehand.