بنقرة واحدة
uno-mvux-feedview
Display async feed data with FeedView control.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Display async feed data with FeedView control.
التثبيت باستخدام 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.
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.
Understand MVUX (Model-View-Update-eXtended) architecture in Uno Platform.
| name | uno-mvux-feedview |
| description | Display async feed data with FeedView control. |
| when_to_use | Use when displaying data from an `IFeed<T>` or `IState<T>` in XAML, showing loading spinners, error messages, or empty-state UI automatically, customizing templates for different data states (value, progress, error, none), or binding feed data inside a `DataTemplate`. |
| 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 FeedView documentation:
uno_platform_docs_search("MVUX FeedView control displaying async data templates")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/FeedView.mdexternal/uno.extensions/doc/Learn/Mvux/Walkthrough/FeedView.howto.mdFetch the full reference page:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/FeedView.md")
From the fetched docs, extract the available templates:
<DataTemplate>) — shown when data is availableFor step-by-step implementation guidance:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Walkthrough/FeedView.howto.md")
This covers rendering IFeed<T>, IState<T>, customizing templates, and refresh behavior.
If the user is displaying a collection feed, search for:
uno_platform_docs_search("MVUX FeedView list feed ListView collection display")
Key page:
external/uno.extensions/doc/Learn/Mvux/Walkthrough/ListFeed.howto.mdxmlns:mvux="using:Uno.Extensions.Reactive.UI"Source property binds to the feed/state: Source="{Binding MyFeed}"{Binding Data} (e.g., {Binding Data.Name})<DataTemplate> content child acts as the ValueTemplateRefresh command — no need to create one manually