Crates.io | dialog-box |
lib.rs | dialog-box |
version | 0.1.0 |
source | src |
created_at | 2019-12-19 07:30:35.592617 |
updated_at | 2019-12-19 07:30:35.592617 |
description | Library to use different dialog-box/popup in Rust |
homepage | |
repository | https://github.com/PankajChaudhary5/dialog-box.git |
max_upload_size | |
id | 190537 |
size | 76,819 |
A Rust Crate/Library by which we can use different Dialog-box in rust program to display warning, information, or error. We can also take input from various dialog-box like calender, question, file path.
Add dependency in Cargo.toml
[dependencies]
dialog_box = "0.1.0"
Example to use dialog-box crate
extern crate dialog_box;
use dialog_box::{calender, warning};
fn main() {
println!("{}", calender("Select a Date"));
println!("{}", warning("The warning message you want to display"));
}
We thrive for the best and want you to contribute towards a better Project. See CONTRIBUTING.md
for giving your valuable feedbacks and contributions.