| OS | Build Status |
| -- | ----- |
| Linux & OS X | |
| Windows |
|
```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.3.0"
libgtk-3-dev
for aptgtk3-devel
for yumDistributed under MIT License