Tui::Reactive
Instance methods
Macros
reactive(decl)
Define a reactive property that triggers watchers on change
Usage: reactive current_path : Path = Path.home
This creates:
- getter @current_path
- setter that calls watch_current_path(value) on change
- abstract watch_current_path(value) to override