This provides webview functionality for embedded fltk windows. This currently works on Windows and MacOS:
```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::from(false, &mut wv_win);
wv.navigate("http://google.com");
app.run().unwrap();
} ```