mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
Update readme
This commit is contained in:
parent
b64a6b8c34
commit
a2d1c019eb
@ -17,9 +17,10 @@ use cursive::Cursive;
|
|||||||
use cursive::view::{Dialog,TextView};
|
use cursive::view::{Dialog,TextView};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
// Creates the cursive root - required for every application.
|
||||||
let mut siv = Cursive::new();
|
let mut siv = Cursive::new();
|
||||||
|
|
||||||
// Create a popup window with a "Ok" button that quits the application
|
// Create a popup window with a button that quits the application
|
||||||
siv.add_layer(Dialog::new(TextView::new("Hello Dialog!"))
|
siv.add_layer(Dialog::new(TextView::new("Hello Dialog!"))
|
||||||
.title("Cursive")
|
.title("Cursive")
|
||||||
.button("Quit", |s| s.quit()));
|
.button("Quit", |s| s.quit()));
|
||||||
|
Loading…
Reference in New Issue
Block a user