Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    tuanvo3423

    flutter-performance

    tuanvo3423/flutter-performance
    AI & ML
    2 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Optimization standards for rebuilds and memory.

    SKILL.md

    Performance (P1)

    • Rebuilds: Use const widgets and buildWhen / select for granular updates.
    • Lists: Always use ListView.builder for item recycling.
    • Heavy Tasks: Use compute() or Isolates for parsing/logic.
    • Repaints: Use RepaintBoundary for complex animations. Use debugRepaintRainbowEnabled to debug.
    • Images: Use CachedNetworkImage + memCacheWidth. precachePicture for SVGs.
    BlocBuilder<UserBloc, UserState>(
      buildWhen: (p, c) => p.id != c.id,
      builder: (context, state) => Text(state.name),
    )
    
    Recommended Servers
    Memory Tool
    Memory Tool
    OpenZeppelin
    OpenZeppelin
    Neon
    Neon
    Repository
    tuanvo3423/test-ai-generation
    Files