ratatui-toolkit 0.2.6

DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Mutable widget variant

mod constructors;
mod traits;

use crate::primitives::dialog::Dialog;

/// A mutable wrapper around Dialog for widget rendering
///
/// This struct provides a mutable reference to Dialog for rendering purposes.
#[allow(dead_code)]
pub struct DialogWidget<'a> {
    /// Mutable reference to the dialog
    pub(crate) dialog: &'a mut Dialog<'a>,
}