[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6494":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},6494,"microui","rxi\u002Fmicroui","rxi","A tiny immediate-mode UI library","",null,"C",5972,368,88,22,0,3,33,106,21,38.7,"MIT License",false,"master",true,[],"2026-06-12 02:01:25","# ![microui](https:\u002F\u002Fuser-images.githubusercontent.com\u002F3920290\u002F75171571-be83c500-5723-11ea-8a50-504cc2ae1109.png)\nA *tiny*, portable, immediate-mode UI library written in ANSI C\n\n## Features\n* Tiny: around `1100 sloc` of ANSI C\n* Works within a fixed-sized memory region: no additional memory is allocated\n* Built-in controls: window, scrollable panel, button, slider, textbox, label,\n  checkbox, wordwrapped text\n* Works with any rendering system that can draw rectangles and text\n* Designed to allow the user to easily add custom controls\n* Simple layout system\n\n## Example\n![example](https:\u002F\u002Fuser-images.githubusercontent.com\u002F3920290\u002F75187058-2b598800-5741-11ea-9358-38caf59f8791.png)\n```c\nif (mu_begin_window(ctx, \"My Window\", mu_rect(10, 10, 140, 86))) {\n  mu_layout_row(ctx, 2, (int[]) { 60, -1 }, 0);\n\n  mu_label(ctx, \"First:\");\n  if (mu_button(ctx, \"Button1\")) {\n    printf(\"Button1 pressed\\n\");\n  }\n\n  mu_label(ctx, \"Second:\");\n  if (mu_button(ctx, \"Button2\")) {\n    mu_open_popup(ctx, \"My Popup\");\n  }\n\n  if (mu_begin_popup(ctx, \"My Popup\")) {\n    mu_label(ctx, \"Hello world!\");\n    mu_end_popup(ctx);\n  }\n\n  mu_end_window(ctx);\n}\n```\n\n## Screenshot\n![screenshot](https:\u002F\u002Fuser-images.githubusercontent.com\u002F3920290\u002F75188642-63ae9580-5744-11ea-9eee-d753ff5c0aa7.png)\n\n[**Browser Demo**](https:\u002F\u002Ffloooh.github.io\u002Fsokol-html5\u002Fsgl-microui-sapp.html)\n\n## Usage\n* See [`doc\u002Fusage.md`](doc\u002Fusage.md) for usage instructions\n* See the [`demo`](demo) directory for a usage example\n\n## Notes\nThe library expects the user to provide input and handle the resultant drawing\ncommands, it does not do any drawing itself.\n\n## Contributing\nThe library is designed to be lightweight, providing a foundation to which you\ncan easily add custom controls and UI elements; pull requests adding additional\nfeatures will likely not be merged. Bug reports are welcome.\n\n## License\nThis library is free software; you can redistribute it and\u002For modify it under\nthe terms of the MIT license. See [LICENSE](LICENSE) for details.\n\n","microui 是一个轻量级的即时模式用户界面库，用ANSI C编写。其核心功能包括在固定大小内存区域内运行、无需额外分配内存，支持窗口、按钮、滑块等内置控件，并且能够与任何可以绘制矩形和文本的渲染系统配合使用。此外，该库设计简洁，易于用户添加自定义控件。适用于需要高效利用资源并快速构建简单用户界面的应用场景，如嵌入式系统或对性能有严格要求的游戏开发中。",2,"2026-06-11 03:07:17","top_language"]