popout 0.1.1

Small and simple modal popups powered by egui
Documentation
1
2
3
4
5
6
7
8
9
10
use popout::{Dialog, LogicalSize};

fn main() {
    Dialog::new()
        .with_line("Hello, World")
        .with_button("Close")
        .with_size(LogicalSize::new(100, 50))
        .show()
        .unwrap();
}