pub fn LogView(props: LogViewProps) -> impl IntoViewExpand description
A scrolling log panel driven by the entries signal. It shows an entry count
header, an optional “Clear” button (on_clear), auto-scrolls to the newest row
when autoscroll is set, and calls on_select with an entry’s id when a row is
clicked. Shows the empty placeholder when there are no entries.
§Required Props
- entries:
impl Into<Signal<Vec<LogEntry>>>
§Optional Props
- on_select:
Callback<usize> - on_clear:
Callback<()> - autoscroll:
bool - empty:
impl Into<String>