achille-martin / pyqt-crom

Create cross-platform apps (Android for now) using only Python and the Qt Framework (PyQt5 for now).
MIT License
25 stars 2 forks source link

Feature: Make the app mobile phone friendly #13

Closed achille-martin closed 5 months ago

achille-martin commented 11 months ago

At the moment, most buttons and dialog windows do not contain a X close button. This means that they run indefinitely and can't be close other than by terminating the app.

A first nice step would be to add basic functionalities to each Widget or window: like a close button or return button. More examples on Code Speedy website.

Another approach would be to use QtQuick + QtQml rather than QtWidgets, because the first combo was developed to tackle mobile development, as mentioned on qt website.

Example of how to design a QtQuick app by PythonGuis.

achille-martin commented 11 months ago

This issue is related to this one as there are 2 teams of developers: QWidgets (and QGraphics) vs QtQuick (and Qml).

achille-martin commented 5 months ago

This will be studied for the Basic+ plan.