fltk-webview

This provides webview functionality for embedded fltk windows:

Usage

Add fltk-webview to your fltk application's Cargo.toml file: toml [dependencies] fltk = "1" fltk-webview = "0.2"

Then you can embed a webview using fltk_webview::Webview::create: ```rust use fltk::{app, 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) .centerofparent(); win.end(); win.make_resizable(true); win.show();

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

app.run().unwrap();

} ```

Dependencies

Known Issues

alt_test

alt_test