msgbox-rs

| OS | Build Status | | -- | ----- | | Linux & OS X | Build Status | | Windows | Build status |

```rust extern crate msgbox;

use msgbox::IconType;

fn main() { msgbox::create("Hello Title", "Hello World!", IconType::Info); } ```

Simple, cross-platform message box GUI library.

All it does is to show a message box modal with an OK button, which runs synchronously.

It supports multi-platform, and maintains separate dependencies per platform, thus light-weight.

Example use case is to show a modal when an error occurs in OpenGL applications.

toml [dependencies] msgbox = "0.6.0"

Platform support

Dev Requirements

Linux

Windows

OS X

License

Distributed under MIT License