This provides webview functionality for embedded fltk windows. This currently works on Windows:
```rust extern crate fltk;
use fltk::{app, enums::Event, prelude::*, window};
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) .centerof_parent(); win.end(); win.show();
// close the app when the main window is closed
win.set_callback(|_| {
if app::event() == Event::Close {
std::process::exit(0);
}
});
let mut wv = fltk_webview::Webview::create(false, &mut wv_win);
wv.navigate("https://google.com");
// the webview handles the main loop
wv.run();
} ```