mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
Update readme example
This commit is contained in:
parent
ca5c485847
commit
163f019908
13
Readme.md
13
Readme.md
@ -8,16 +8,17 @@ It is designed to be safe and easy to use:
|
||||
```rust
|
||||
extern crate cursive;
|
||||
|
||||
use cursive::{Cursive,Dialog};
|
||||
use cursive::{Cursive,Dialog,TextView};
|
||||
|
||||
fn main() {
|
||||
let mut siv = Cursive::new();
|
||||
let mut siv = Cursive::new();
|
||||
|
||||
// Create a popup window with a "Ok" button that quits the application
|
||||
siv.add_layer(Dialog::new("Hello world!").button("Ok", |s, _| s.quit()));
|
||||
// Create a popup window with a "Ok" button that quits the application
|
||||
siv.add_layer(Dialog::new(TextView::new("Hello world!"))
|
||||
.button("Quit", |s, _| s.quit()));
|
||||
|
||||
// Starts the event loop.
|
||||
siv.run();
|
||||
// Starts the event loop.
|
||||
siv.run();
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user