flutter-engine is a library to make desktop apps in flutter and rust

flutter-engine in action

```rust const ASSETSPATH: &str = "../build/flutterassets"; const ICUDATAPATH: &str = "./assets/icudtl.dat";

fn main() { let mut engine = flutterengine::init().unwrap(); engine .createwindow( &flutterengine::WindowArgs { height: 1200, width: 1800, title: "Flutter App Demo", mode: flutterengine::WindowMode::Windowed, bgcolor: (255, 255, 255), }, ASSETSPATH.tostring(), ICUDATAPATH.tostring(), vec![], ) .unwrap(); engine.runwindowloop(None, None); } ```

demo

Check this out for a runable demo.