Simplify manifest and update docs (#95)

This commit is contained in:
Ken Van Hoeylandt
2024-11-27 00:26:59 +01:00
committed by GitHub
parent 03d14ef74b
commit 4744565b0e
3 changed files with 2 additions and 5 deletions
+1 -2
View File
@@ -57,8 +57,7 @@ static void app_show(tt::app::App app, lv_obj_t* parent) {
extern const tt::app::Manifest manifest = {
.id = "HelloWorld", // Used to identify and start an app
.name = "Hello World", // Shown on the desktop and app's toolbar
.type = TypeUser,
.on_show = &app_show // A minimal setup sets the on_show() function
.onShow = &app_show // A minimal setup sets the on_show() function
};
```