feat(kotlin-compose): design system + 33 components + gallery_kt + e2e android emulator + scaffolder fixes

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-11 16:29:05 +02:00
parent ddf8e76ad6
commit 33d50aacdd
+7 -4
View File
@@ -45,9 +45,6 @@ static void reload_data() {
}
static void render() {
// MainMenuBar (solo Settings — el dashboard no expone paneles toggleables)
fn_ui::app_menubar(nullptr, 0, nullptr);
if (ImGui::GetIO().UserData != nullptr) {
ImGui::GetIO().UserData = nullptr;
reload_data();
@@ -168,7 +165,13 @@ int main(int argc, char** argv) {
reload_data();
return fn::run_app(
{.title = "fn_registry Dashboard", .width = 1600, .height = 1000, .viewports = true},
{.title = "fn_registry Dashboard",
.width = 1600,
.height = 1000,
.viewports = true,
.about = {"fn_registry Dashboard", "0.1.0",
"Dashboard del registry: funciones, tipos, apps, drift."},
.log = {"registry_dashboard.log", 1}},
render
);
}