Container
The most basic UI component.
using Fugl
function MyApp()
Container()
end
screenshot(MyApp, "container.png", 400, 300);
You can add a child component to a cointainer, as such:
using Fugl
function MyApp()
Container(
Container()
)
end
screenshot(MyApp, "container_child.png", 400, 300);