Crates.io | msgbox |
lib.rs | msgbox |
version | 0.7.0 |
source | src |
created_at | 2017-01-20 09:47:46.327444 |
updated_at | 2022-02-15 02:26:44.119861 |
description | A multi-platform message box modal with a OK button, which runs synchronously. |
homepage | |
repository | https://github.com/bekker/msgbox-rs |
max_upload_size | |
id | 8146 |
size | 30,119 |
OS | Build Status |
---|---|
Linux & OS X | |
Windows |
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.
libgtk-3-dev
for aptgtk3-devel
for yumDistributed under MIT License