flutter-navigation — flutter-navigation install flutter-navigation, Flutter-POS, community, flutter-navigation install, ide skills, flutter deep linking, navigator api, browser history integration, Claude Code, Cursor, Windsurf

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/8/2026

Agent Capability Analysis

The flutter-navigation skill by abd0-omar is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for flutter-navigation install, flutter deep linking, navigator api.

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

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
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

flutter-navigation

Install flutter-navigation, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

go_router Navigation

  • context.go('/path') - replace current route
  • context.push('/path') - add to stack
  • context.pop() - go back
  • 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

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is flutter-navigation?

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

How do I install flutter-navigation?

Run the command: npx killer-skills add abd0-omar/Flutter-POS/flutter-navigation. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for flutter-navigation?

Key use cases include: Implementing deep linking for mobile apps, Configuring browser history integration for web apps, Managing data flow between screens in multi-screen transitions.

Which IDEs are compatible with flutter-navigation?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for flutter-navigation?

Requires Flutter framework. Limited to mobile and web platforms.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add abd0-omar/Flutter-POS/flutter-navigation. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use flutter-navigation immediately in the current project.

Related Skills

Looking for an alternative to flutter-navigation or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

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
AI

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
AI