-
Notifications
You must be signed in to change notification settings - Fork 619
RUSshy edited this page Mar 17, 2017
·
5 revisions
!! Need documentation and example for other sort of Row? !!
nk_layout_row_begin(ctx, NK_STATIC, 30, 2);
{
nk_layout_row_push(ctx, 50);
nk_label(ctx, "First Row", NK_TEXT_LEFT);
nk_layout_row_push(ctx, 110);
nk_label(ctx, "Second Row:", NK_TEXT_LEFT);
}
nk_layout_row_end(ctx);