KS
Killer-Skills

flutter-navigation — how to use flutter-navigation how to use flutter-navigation, flutter-navigation setup guide, what is flutter-navigation, flutter-navigation vs react navigation, flutter-navigation install, flutter-navigation alternative, flutter deep linking, navigator api, browser history integration

v1.0.0
GitHub

About this Skill

Perfect for Mobile and Web Agents needing advanced navigation and routing capabilities in Flutter applications. flutter-navigation is a technique for implementing navigation and routing in Flutter applications across mobile and web platforms

Features

Implements navigation using Navigator API for simple apps
Configures deep linking for complex applications
Manages data flow between screens
Handles browser history integration
Supports single-screen to multi-screen transitions
Enables quick prototyping with basic navigation stacks

# Core Topics

abd0-omar abd0-omar
[0]
[0]
Updated: 3/7/2026

Quality Score

Top 5%
33
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add abd0-omar/Flutter-POS/references/navigation-patterns.md

Agent Capability Analysis

The flutter-navigation MCP Server by abd0-omar is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use flutter-navigation, flutter-navigation setup guide, what is flutter-navigation.

Ideal Agent Persona

Perfect for Mobile and Web Agents needing advanced navigation and routing capabilities in Flutter applications.

Core Value

Empowers agents to implement navigation and routing in Flutter applications across mobile and web platforms, handling browser history integration and deep linking using the Navigator API.

Capabilities Granted for flutter-navigation MCP Server

Implementing deep linking for mobile apps
Configuring browser history integration for web apps
Managing data flow between screens in multi-screen transitions

! Prerequisites & Limits

  • Requires Flutter framework
  • Limited to mobile and web platforms
Project
SKILL.md
2.8 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Flutter Navigation

Overview

Implement navigation and routing in Flutter applications across mobile and web platforms. Choose the right navigation approach, configure deep linking, manage data flow between screens, and handle browser history integration.

Choosing an Approach

Use Navigator API (Imperative) When:

  • Simple apps without deep linking requirements
  • Single-screen to multi-screen transitions
  • Basic navigation stacks
  • Quick prototyping

Example: assets/navigator_basic.dart

Use go_router (Declarative) When:

  • Apps requiring deep linking (iOS, Android, Web)
  • Web applications with browser history support
  • Complex navigation patterns with multiple Navigator widgets
  • URL-based navigation needed
  • Production applications with scalable architecture

Example: assets/go_router_basic.dart

Avoid Named Routes

Flutter team does NOT recommend named routes. They have limitations:

  • Cannot customize deep link behavior
  • No browser forward button support
  • Always pushes new routes regardless of current state

Common Tasks

Pass Data Between Screens

With Navigator:

dart
1Navigator.push( 2 context, 3 MaterialPageRoute(builder: (context) => DetailScreen(item: myItem)), 4);

With go_router:

dart
1context.push('/details?id=123'); 2// Extract: final id = state.uri.queryParameters['id'];

Example: assets/passing_data.dart

Return Data From Screens

dart
1final result = await Navigator.push( 2 context, 3 MaterialPageRoute<String>(builder: (context) => SelectionScreen()), 4); 5if (!context.mounted) return;

Example: assets/returning_data.dart

Configure Deep Linking

Android: Configure AndroidManifest.xml intent filters iOS: Configure Info.plist for Universal Links Web: Automatic with go_router, choose URL strategy

For detailed setup: references/deep-linking.md

Web URL Strategy

Hash (default): example.com/#/path - no server config needed Path: example.com/path - cleaner URLs, requires server config

For server setup: references/web-navigation.md

Navigation Methods

go_router Navigation

  • context.go('/path') - replace current route
  • context.push('/path') - add to stack
  • context.pop() - go back

Navigator Navigation

  • Navigator.push() - add route to stack
  • Navigator.pop() - remove route from stack

Advanced Topics

Route Guards: Implement authentication redirects Nested Routes: Create shell routes with shared UI Error Handling: Handle 404 and navigation errors Multiple Navigators: Manage independent navigation stacks

For advanced patterns: references/go_router-guide.md

Decision Guide

Use navigation-patterns.md for:

  • Complete comparison of navigation approaches
  • Deep linking behavior by platform
  • Web-specific considerations
  • Common patterns and anti-patterns

Related Skills

Looking for an alternative to flutter-navigation or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication