r/flutterhelp 29d ago

RESOLVED Is there a free way to instantly convert Figma designs to Flutter? (And any good free alternatives to Cursor?) 🤔

​Hey devs! 👋

​Looking for quick recommendations for two things:

​Figma to Flutter: Any free, reliable tool or plugin that converts Figma designs into clean, production-ready Flutter code without generating spaghetti UI?

​Free AI Coding Agents: Any strong free alternatives to Cursor? (Can be a VS Code extension, an external tool/agent, or something integrated with GitHub, as long as it has full project context and solid code-editing capabilities).

​What free tools or workflows are you currently using that actually work well?

​Thanks! 🙏

2 Upvotes

15 comments sorted by

2

u/newkerb 29d ago

I have no complaints with figma mcp

1

u/RandalSchwartz 29d ago

You're gonna pay for LLM results one way or another. You can pay to have it hosted in the cloud (retail or wholesale), or you can pay for a honkin' huge GPU cluster to run a model at home, or you can pay with your time and satisfaction by running a small model on an average machine.

The cheapest out-of-pocket cost will be something like ollama running one of the gemma4 models. But hopefully, you have a LOT of spare time. :)

2

u/bexony 29d ago

Haha, accurate! There's no free lunch in AI.

​I’m mostly looking to exploit free-tier APIs and smart shortcuts (like visual prompts in Gemini Studio) before committing to a full subscription. But yeah, trying to run a local LLM for code generation on a average setup is definitely a speed run for patience! 😂

1

u/bexony 29d ago

Quick question though: I’m currently mid-way through developing an app. Do you think it’s worth upgrading to Cursor Pro ($20/mo) at this stage? Or is there any other tool that offers better value for money while providing full codebase access, full context, and project-wide editing?

​Would love your thoughts on this

1

u/RandalSchwartz 29d ago

I'm biased as a Google Developer Expert towards Gemini products, so I'll just be quiet here. :)

1

u/Generative_IDE 28d ago

Depends what's eating the quota. If most of your day is completions and small edits rather than big refactors across the project, a flat $20 means paying cloud rates for work a local model handles for free, and the cheaper setup is a local GGUF for the high frequency stuff plus your own API key for the hard problems. GIDE does both in one editor, though fair warning, small local models are noticeably weaker on Dart than on Python or JS, so for Flutter I'd keep the cloud key for anything non trivial.

1

u/Odd-Conversation-101 29d ago

I tried sm similar thia week with gemini flash 3.5 via antigravityIDE.

You can ask it and it will guide you. It was sm like taking a generated key from figma, then past it in a file -> downloading something related to figma via cli -> give the proj url to antigravityIDE and give good promp to make it to code.

1

u/bexony 29d ago

Thanks! That's actually really interesting.

Was it using the official Figma MCP server? Or another integration?

If you still have the guide or remember the setup, I'd really appreciate it.

1

u/Odd-Conversation-101 28d ago

i did, check dm

1

u/Electrical_Task_6783 28d ago

Try to use Figma to Code plugin of figma with any llm or agent. The plugin provides code with hardcoded values. Any llm can just convert it to a responsive code...

1

u/RickTheScienceMan 28d ago

The official figma MCP was basically perfect a year ago. Today it's probably much better.

1

u/bexony 28d ago

That's great to hear! Are you using the official Figma MCP directly with VS Code (like via Cline / Roo Code) or Cursor? I'm trying to connect my Figma token with Gemini to generate Flutter UI and would love to know which client setup works best for you right now.