move printf stack to bottom

This commit is contained in:
Daniel Bulant 2024-03-03 16:07:12 +01:00
parent 4244f649ed
commit e67a2f998a

View file

@ -145,5 +145,20 @@ mov esi, 1
))
);
yield* beginSlide("Add text");
yield* beginSlide("Reorder");
const spacer = createRef<Layout>();
innerLayout().insert(
<>
<Layout layout height={0} ref={spacer} />
</>, 0
);
yield* spacer().grow(1, .3);
innerLayout().justifyContent("end");
spacer().remove();
yield* beginSlide("Reorder");
});