Uno Navigation Troubleshooting — Agent Skill
Workflow
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.
Step 1: Search for Navigation Troubleshooting
uno_platform_docs_search("Uno Navigation troubleshooting errors common issues")
Step 2: Check Common Pitfalls
Fetch the regions how-to page for critical warnings:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Navigation/HowTo-Regions.md")
Step 3: For Route Registration Issues
uno_platform_docs_search("Uno Navigation route not found register ViewMap DataViewMap")
Step 4: For Advanced Navigation Issues
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Navigation/Advanced/HowTo-AdvancedPageNavigation.md")
Common Issues (Stable Reference)
- Region.Attached in Shell.xaml: NEVER use
Region.Attached="True"inside Shell.xaml or ExtendedSplashScreen content — navigation host isn't ready yet - Missing route registration: All pages must be registered via
ViewMap/DataViewMapinRegisterRoutes - Missing UnoFeatures: Ensure
Navigation;Toolkitare in<UnoFeatures> - Missing XAML namespace:
xmlns:uen="using:Uno.Extensions.Navigation.UI"required for regions and attached properties - Back stack issues: Use qualifiers (
-/orQualifiers.ClearBackStack) to manage back stack - Data not arriving: Ensure
DataViewMapis registered for the data type, and ViewModel accepts data via constructor
Related Skills
- [[uno-navigation-setup]] — Proper setup
- [[uno-navigation-regions]] — Region configuration
- [[uno-navigation-routes]] — Route registration