# Fluttered Slint
A way to create slint interfaces in a similar way to Google's Flutter. Hecho en Puerto Rico por Radamés J. Valentín Reyes.
## Important note
This is just a proof of concept that just began development.
## Example
Here is a Hello World example.
~~~rs
run_app(SlintedScaffold {
body: Widget::Text(TextWidget{
text: "Hello World".into(),
}),
})
~~~