|
use cursive::views::{Dialog, TextView};
|
|
use cursive::View;
|
|
|
|
pub fn about() -> Box<dyn View> {
|
|
Box::new(
|
|
Dialog::new()
|
|
.content(TextView::new("rust chat server written by Mitchel Hardie & Michael Bailey (c) 2020"))
|
|
.button("Close", |s| {s.pop_layer();})
|
|
)
|
|
} |