Loading repository data…
Loading repository data…
alanhoff / repository
Tiny cross-platform UI library for Rust that uses a webview for rendering HTML5
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
⚠️ This project is a work in progress. Very alpha. Really.
This crate uses C bindings from zserge/webview to display a Rust controllable webview for rendering modern UI interfaces using web technology. Included features:
hello_world example is less than 200KB when packed121MB smallerextern crate webview;
use webview::{Content, WebView};
fn main() {
let view = WebView::new(
"My awesome title", // The title of the window
Content::Html("<h1>Hello world!</h1>"), // The content to display
200, // Width
100, // Height
false, // Resizable?
false, // Debugable?
).unwrap();
// Starts the event loop
view.join();
}

Copyright 2018 Alan Hoffmeister <alanhoffmeister@gmail.com>
Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.