Lines Matching refs:NestedScrollMode
4 …rkui/arkui-ts/ts-container-list.md)) for nested scrolling, use the [NestedScrollMode](../reference…
6 …butes: **scrollForward** and **scrollBackward**, both of which are [NestedScrollMode](../reference…
25 …// With NestedScrollMode set to SELF_ONLY, the parent component does not scroll when the component…
26 @State NestedScrollMode0: NestedScrollMode = NestedScrollMode.SELF_ONLY;
27 …// With NestedScrollMode set to SELF_FIRST, the component scrolls first, and when it hits the boun…
28 @State NestedScrollMode1: NestedScrollMode = NestedScrollMode.SELF_FIRST;
29 …// With NestedScrollMode set to PARENT_FIRST, the parent component scrolls first, and when it hits…
30 @State NestedScrollMode2: NestedScrollMode = NestedScrollMode.PARENT_FIRST;
31 …// With NestedScrollMode set to PARALLEL, the component and its parent component scroll at the sam…
32 @State NestedScrollMode3: NestedScrollMode = NestedScrollMode.PARALLEL;
33 @State NestedScrollModeF: NestedScrollMode = NestedScrollMode.SELF_FIRST;
34 @State NestedScrollModeB: NestedScrollMode = NestedScrollMode.SELF_FIRST;