一键导入
uno-mvux-pagination
Implement paginated and infinite scrolling lists in MVUX.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implement paginated and infinite scrolling lists in MVUX.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create and use commands in MVUX for user interactions.
Create and use IFeed<T> for async data in MVUX.
Display async feed data with FeedView control.
Create and use IListFeed<T> for reactive collections in MVUX.
Create and use IListState<T> for mutable reactive collections in MVUX.
Use messaging to sync MVUX states with entity changes.
| name | uno-mvux-pagination |
| description | Implement paginated and infinite scrolling lists in MVUX. |
| when_to_use | Use when loading large datasets incrementally (page by page), implementing infinite scroll in `ListView`, `GridView`, or `ItemsRepeater`, working with APIs that use offset/limit or cursor-based pagination, or using `ListFeed.PaginatedAsync(...)`. |
| metadata | {"author":"uno-platform","version":"2.3","category":"mvux"} |
Docs lookup: call
uno_platform_docs_search(...)first, thenuno_platform_docs_fetch(sourcePath="…")using thesourcePathfield from a result (a relative.mdpath; add the result'sanchorfor a section). Never pass a URL, a.htmllink, or a hand-built path.
Search for and fetch the pagination documentation:
uno_platform_docs_search("MVUX pagination infinite scrolling PaginatedAsync")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.mdexternal/uno.chefs/doc/mvux/Pagination.mdexternal/uno.extensions/doc/Reference/Reactive/in-apps.mdFetch the reference page:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.md")
Fetch the Chefs app example for a real-world implementation:
uno_platform_docs_fetch(sourcePath="external/uno.chefs/doc/mvux/Pagination.md")
From the fetched docs:
PageRequest.DesiredSize, PageRequest.CurrentCount)If the user is using ItemsRepeater for incremental loading:
uno_platform_docs_search("ItemsRepeater MVUX pagination incremental loading")
Key page:
external/uno.toolkit.ui/doc/helpers/walkthroughs/itemsrepeater-extensions.howto.mdListFeed.PaginatedAsync(...) to create a paginated list feedPageRequest with DesiredSize and CurrentCountListView supports incremental loading automatically when bound to a paginated feedItemsRepeater, use the Toolkit's ItemsRepeaterExtensions for incremental loading support