1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//! App-side scroll request types.
//!
//! Apps push [`ScrollRequest`]s via [`crate::App::drain_scroll_requests`];
//! the layout pass resolves each one against the matching scroll
//! container's live viewport rect and writes the resulting offset into
//! the scroll state so the same frame's render reflects the new position.
//!
//! Mirrors [`crate::toast`]: the App produces fire-and-forget descriptors
//! and the runtime resolves them with state that's only fully known
//! mid-frame.
/// Where in the viewport a [`ScrollRequest::ToRow`] should land its
/// target row.
/// What the app produces from [`crate::App::drain_scroll_requests`].
/// Two shapes today:
///
/// - [`ScrollRequest::ToRow`] — "scroll the virtual list keyed
/// `list_key` so row `row` lands per `align`." Resolved during
/// layout of the matching `virtual_list` / `virtual_list_dyn` using
/// the live viewport and the row-height cache.
/// - [`ScrollRequest::EnsureVisible`] — "scroll the nearest scroll
/// container under the node keyed `container_key` so the content-
/// space rect `y..y+h` is visible." Resolved during layout of the
/// matching `scroll(...)` container; minimal-displacement (top edge
/// if above viewport, bottom edge if below, no-op if already
/// visible). Used by [`crate::widgets::text_area`] for
/// caret-into-view on keyboard navigation, and available for any
/// widget that needs to keep an inner anchor on screen.