dialog-box 0.1.0

Library to use different dialog-box/popup in Rust
Documentation
  • Coverage
  • 88.89%
    8 out of 9 items documented0 out of 8 items with examples
  • Size
  • Source code size: 76.29 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.18 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Polkaverse/dialog-box
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Polkaverse

dialog-box

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.

Screenshot

Screenshot Screenshot Screenshot

Use

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"));
}

Contributing

We thrive for the best and want you to contribute towards a better Project. See CONTRIBUTING.md for giving your valuable feedbacks and contributions.