Quote Originally Posted by natile View Post
Hi all
I work on project in qt embedded on linux - arm board.
I use eglfs plugin (instead of x11) - write the screen directly to the frame buffer.
I understand that I can't use multiple windows in my application. just one main window. is it true?
eglfs talks to the system's framebuffer, which does not have support for windows.
You need a windowing system to do that, e.g. X11 or Wayland.
Not Qt specific of course, that is a system setup thing.

Quote Originally Posted by natile View Post
This is pretty annoying because I need to handle many views in one stackedwidget.
Not sure what that has to do with multiple windows. A QStackedWidget is never multiple windows, it is one widget showing one of many pages.

Cheers,
_