Create Qt Quick UI Prototypes
Qt Quick UI Prototype projects are useful for testing or prototyping user interfaces, or for setting up a separate project just for QML editing, for example. You cannot use them for application development because they do not have:
- C++ code
- Resource files (.qrc)
- Code needed for deploying applications to devices
For more information about how to turn Qt Quick UI Prototype projects into Qt Quick Application projects, see Converting UI Projects to Applications.
To create a Qt Quick UI Prototype project:
- Go to File > New Project > Other Project > Qt Quick UI Prototype.
- Select Choose to open the Project Location dialog.
- In Name, enter a name for the application.
- In Create in, enter the path for the project files. Select Use as default project location to create new projects in this folder by default.
- Select Next (or Continue on macOS) to open the Define Project Details dialog.
- Select Create a project that you can open in Qt Design Studio to make the project compatible with Qt Design Studio.
- Select Use Qt Virtual Keyboard check box to add support for Qt Virtual Keyboard to the application.
Note: If you have not installed the Qt Virtual Keyboard module when you installed Qt, an error message will appear when you try to open main.qml.
- Select Next to open the Kit Selection dialog.
- Select kits for the platforms that you want to build the application for.
Note: Kits are listed if they have been specified in Preferences > Kits.
- Select Next to open the Project Management dialog.
- Review the project settings, and select Finish (on Windows and Linux) or Done (on macOS) to create the project.
Qt Creator creates the following files:
- .qmlproject project file defines that all QML, JavaScript, and image files in the project folder belong to the project. Therefore, you do not need to individually list all the files in the project.
- .qml file defines a UI item, such as a component or the whole application UI.
- Screen01.ui.qml file defines a custom QML type using instances of a Rectangle type that forms the background, a Button, and a Text component that displays some text. This file is created if you select Create a project that you can open in Qt Design Studio.
To use JavaScript and image files in the application, copy them to the project folder.
See also Create Qt Quick Applications, How To: Manage Kits, and Creating Projects.
Copyright © The Qt Company Ltd. and other contributors. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.