This commit is contained in:
ArthurSonzogni
2025-08-17 11:15:34 +02:00
parent c3a3b2f0e5
commit ff984016d7
31 changed files with 126 additions and 87 deletions

View File

@@ -17,8 +17,9 @@ int main() {
std::vector<std::string> entries;
int selected = 0;
for (int i = 0; i < 30; ++i)
for (int i = 0; i < 30; ++i) {
entries.push_back("Entry " + std::to_string(i));
}
auto radiobox = Menu(&entries, &selected);
auto renderer = Renderer(radiobox, [&] {
return radiobox->Render() | vscroll_indicator | frame |