Navigate Flutter apps across mobile and web with Navigator API or go_router, including deep linking and browser history.
Works with
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
Pass data between screens via constructor arguments (Navigator) or URL query parameters (go_router); return data using Future-based pop with typed results
Configure deep linking through
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionflutter-navigationExecute the skills CLI command in your project's root directory to begin installation:
Fetches flutter-navigation from madteacher/mad-agents-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate flutter-navigation. Access via /flutter-navigation in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
91
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
91
stars
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.
Example: assets/navigator_basic.dart
Example: assets/go_router_basic.dart
Flutter team does NOT recommend named routes. They have limitations:
With Navigator:
Navigator.push(
context,
MaterialPageRoute(builder: (context) => DetailScreen(item: myItem)),
);
With go_router:
context.push('/details?id=123');
// Extract: final id = state.uri.queryParameters['id'];
Example: assets/passing_data.dart
final result = await Navigator.push(
context,
MaterialPageRoute<String>(builder: (context) => SelectionScreen()),
);
if (!context.mounted) return;
Example: assets/returning_data.dart
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
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
context.go('/path') - replace current routecontext.push('/path') - add to stackcontext.pop() - go backNavigator.push() - add route to stackNavigator.pop() - remove route from stackRoute 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
Use navigation-patterns.md for:
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
ajianaz/skills-collection
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
flutter-navigation has been reliable in day-to-day use. Documentation quality is above average for community skills.
Registry listing for flutter-navigation matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: flutter-navigation is focused, and the summary matches what you get after install.
flutter-navigation reduced setup friction for our internal harness; good balance of opinion and flexibility.
flutter-navigation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added flutter-navigation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
We added flutter-navigation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
flutter-navigation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Registry listing for flutter-navigation matched our evaluation — installs cleanly and behaves as described in the markdown.
We added flutter-navigation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 48