fltk-webview

This provides webview functionality for embedded fltk windows. This currently works on Windows:

Usage

```rust use fltk::{prelude::*, *};

fn main() { let app = app::App::default(); let mut win = window::Window::default() .withsize(800, 600) .withlabel("Webview"); let mut wvwin = window::Window::default() .withsize(790, 590) .centerofparent(); win.end(); win.show();

let mut wv = fltk_webview::Webview::create(false, &mut wv_win);
wv.navigate("http://google.com");

app.run().unwrap();

} ```

Limitations

alt_test