simonkrauter / NiGui

Cross-platform desktop GUI toolkit written in Nim
MIT License
718 stars 50 forks source link

Absolute coordinates #32

Closed gmengano closed 5 years ago

gmengano commented 5 years ago

Can I bypass the container layout system and position my controls using absolute coordinates?

simonkrauter commented 5 years ago

Yes, this is supported, however not recommend for regular UIs.

I added this example: https://github.com/trustable-code/NiGui/blob/master/examples/example_13_fixed_layout.nim

Is this what you need?

gmengano commented 5 years ago

Yes, many thanks