I have played with one of the examble with Display manager. I have converted the display a ST7796 and the Touch to XPT2046 and the device to an ESP32 dev1. It work in simulation but I can´t compile to the target, get lot of error.
The problem is caused by the XPT2046 component pin properties.
If you change $GPIO5 to $PortA.5 by clicking on the pin property and ticking the Use chip references check box then hopefully that should resolve the issue.
The $GPIO5 will work when it's used as a generic I/O pin but not currently when that is tied to a peripheral e.g. SPI.
So the XPT2046 MOSI, MISO and CLK pins will all currently need to use the chip referenced pin property types.
Here's your program adjusted so that it's now compiling correctly.
I can compile now, fine, thank you, and it work. But If I rotate the display to pos.1, all the Widget rotate as they should on the display, but the XPT2046 doesn´t follow the rotation. The touch is working outside the Widget and same area as without the rotation.
Also in simulation, how can I rotate the XPT2046 in FC11. In FC10 the touch follow the rotation?