This repository has been archived by the owner on Dec 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Row
RUSshy edited this page Mar 17, 2017
·
4 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);