TouchGFX Widgets
The UNA SDK ships a set of ready-made TouchGFX custom containers that cover the most common UI patterns for watch applications. Each widget is distributed as a .tpkg file — a standard TouchGFX Custom Container Package (ZIP archive) that can be imported directly into TouchGFX Designer.
Using the pre-built widgets
Open TouchGFX Designer.
Go to Edit → Import → Custom Containers.
Select the desired
.tpkgfile fromDocs/Templates/TouchGFX-Widgets/.
Exporting your own widgets
Any custom container in an existing project can be exported and reused in a new one. This is the recommended way to transfer app-specific widgets between projects or share them with other developers.
To export a container from TouchGFX Designer:
Open the project that contains the widget.
In the Custom Containers panel, right-click the container you want to export.
Select Export — Designer creates a
.tpkgfile with all required source files, assets, and fonts bundled inside.Import the resulting
.tpkginto any other project using the steps above.
You can modify the exported container freely: edit the C++ implementation, adjust the Designer layout, change assets, or extend the class before importing.
🎨 TouchGFX Widgets