#include <memory>
#include <string>
int main(int argc, const char* argv[]) {
std::string first_name;
std::string last_name;
std::string password;
Component input_password =
Input(&password,
"password", password_option);
input_first_name,
input_last_name,
input_password,
});
auto renderer =
Renderer(component, [&] {
text(
"Hello " + first_name +
" " + last_name),
hbox(
text(
" First name : "), input_first_name->Render()),
hbox(
text(
" Last name : "), input_last_name->Render()),
hbox(
text(
" Password : "), input_password->Render()),
}) |
});
screen.Loop(renderer);
}