tag

navigation

7 indexed skills · max 10 per page

skills (7)

compose-navigation

new-silvermoon/awesome-android-agent-skills · Productivity

0

Implement type-safe navigation in Jetpack Compose applications using the Navigation Compose library. This skill covers NavHost setup, argument passing, deep links, nested graphs, adaptive navigation, and testing.

navigation-menu-generator

kostja94/marketing-skills · Productivity

0

Guides navigation menu design for SEO, UX, and accessibility. Navigation helps users find content and signals site structure to search engines.

flutter-navigation

madteacher/mad-agents-skills · Productivity

0

Navigate Flutter apps across mobile and web with Navigator API or go_router, including deep linking and browser history. \n \n Choose Navigator API for simple apps without deep linking; use go_router for production apps requiring deep links, browser history support, and URL-based navigation across platforms \n Pass data between screens via constructor arguments (Navigator) or URL query parameters (go_router); return data using Future-based pop with typed results \n Configure deep linking through

swiftui-navigation

dpearson2699/swift-ios-skills · Frontend

0

Navigation patterns for SwiftUI apps targeting iOS 26+ with Swift 6.3. Covers push navigation, multi-column layouts, sheet presentation, tab architecture, and deep linking. Patterns are backward-compatible to iOS 17 unless noted.

flutter-routing-and-navigation

flutter/skills · Productivity

0

Navigate between screens, handle deep linking, and manage data passing in Flutter applications. \n \n Evaluates app requirements to select the optimal routing strategy: imperative Navigator for simple flows, declarative Router / go_router for deep linking and web support, or nested Navigator for independent sub-flows \n Supports data passing between routes via constructor arguments (preferred) or RouteSettings with type-safe argument extraction \n Implements named routes with MaterialApp.routes

nextjs-server-navigation

wsimmonds/claude-nextjs-skills · Frontend

0

Server Components use DIFFERENT navigation methods than Client Components!

flutter-implementing-navigation-and-routing

flutter/skills · Productivity

0

Imperative and declarative routing patterns for Flutter screen transitions and deep linking. \n \n Covers both Navigator (imperative, stack-based) and Router (declarative, URL-synchronized) approaches with guidance on when to use each \n Supports deep linking on iOS, Android, and Web; includes data passing via constructors, route arguments, and return values \n Implements nested navigation for multi-step flows (e.g., setup wizards) with independent sub-navigators and back-button interception \n