feat: add orbtk
This commit is contained in:
15
__gui/orbtk/src/main.rs
Normal file
15
__gui/orbtk/src/main.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use orbtk::prelude::*;
|
||||
|
||||
fn main() {
|
||||
Application::new()
|
||||
.window(|ctx| {
|
||||
Window::new()
|
||||
.title("OrbTk - minimal example")
|
||||
.position((100.0, 100.0))
|
||||
.size(400.0, 600.0)
|
||||
.child(TextBlock::new().text("OrbTk").build(ctx))
|
||||
.build(ctx)
|
||||
})
|
||||
.run();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user