fluttered_slint 0.0.1

A way to create slint interfaces in a similar way to Google's Flutter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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(),
    }),
})
~~~