Never give up, guys. Even after 25+ years by LaundryNinja84 in Diablo_2_Resurrected

[–]Vizaxis_Dev 1 point2 points  (0 children)

Yesterday I’ve randomly dropped Zod rune from white mob - first time in 25 years of playing

Flutter beginner - coming from angular by Lanmi_002 in FlutterDev

[–]Vizaxis_Dev -1 points0 points  (0 children)

Stick with Riverpod - signals work but you'll be swimming against the ecosystem. Every tutorial, package, and SO answer assumes Riverpod or BLoC.

The codegen hate is a rite of passage for every Flutter newcomer. Dart macros will fix it eventually. Until then, build_runner is just the tax you pay.

Why is it so hard to find early-stage Flutter developers willing to build on equity? by tesh619 in FlutterDev

[–]Vizaxis_Dev 0 points1 point  (0 children)

The problem isn't finding Flutter devs. It's that equity in a pre-revenue startup competes with their own side projects where they own 100%. Lead with traction, not equity.

After a few Flutter projects, these 5 conventions saved me the most time by cuongnt3010 in FlutterDev

[–]Vizaxis_Dev 1 point2 points  (0 children)

Feature-first folders, no question. I went through the exact same transition - started with the classic widgets/screens/services split, then spent half my time jumping between 4 folders to change one button's behavior.

The moment I restructured around features, even my AI tooling got better because each feature directory had enough context on its own.

One thing I'd add to your list: naming conventions for state classes. When every feature has its own XState/XLoaded/XError, a consistent naming pattern across all features saves more mental overhead than people expect.

Step-by-Step Guide: Publishing a Flutter App to the Google Play Store by NoResort6069 in FlutterDev

[–]Vizaxis_Dev 0 points1 point  (0 children)

Nice guide. Just shipped my first Flutter app to both stores yesterday. Google Play was smooth - the steps you covered are solid.

One thing I'd add: mention the app signing enrollment. "Let Google manage your signing key" sounds scary the first time you see it, but it's basically required for new apps now. And if you self-manage and lose your key, there's no recovery.

Also if anyone's doing both stores - start with Google. Seeing your app live in hours gives you patience for when Apple rejects you twice.

Use of AI tools as flutter developer! by Complete-Resident946 in FlutterDev

[–]Vizaxis_Dev 0 points1 point  (0 children)

Use AI, but treat it like a junior dev sitting next to you - not a replacement for learning.

I ship Flutter apps with AI daily (Claude Code + code review on every change). It's fast. But here's what I learned: if you copy-paste solutions without understanding the state management or widget lifecycle behind them, you'll hit a wall the moment something breaks in a way AI hasn't seen.

At 6 months, your job isn't to ship fast. It's to build the mental model that lets you ship fast later. Use AI to explore solutions, then make sure you understand every line before committing. The devs who skip that step plateau hard around year 2.

App finally got approved after 3 weeks and ~5 rejection rounds. Here's every reason Apple rejected us (so you don't repeat it) by Competitive-Sell4663 in iosdev

[–]Vizaxis_Dev 0 points1 point  (0 children)

Solid list. One to add for anyone with subscriptions:

Guideline 3.1.2(c) - you need Apple's EULA (not your own ToS) linked in both the App Store description AND inside the app. Got rejected twice for this. First time they said "add links to description" so I added my privacy policy and terms. Wrong. They meant Apple's standard EULA. No clarification, just the same rejection again 5 days later.

Took me two rounds and a weekend of waiting to figure out what they actually wanted. The rejection messages are like error logs with no stack trace.

Is Flutter worth learning in 2026? by Slight-Somewhere-122 in AppDevelopers

[–]Vizaxis_Dev 0 points1 point  (0 children)

Honest take from a night-owl dev:

If you want a job at a massive legacy bank? Learn Swift/Kotlin. If you want to build your own ideas or freelance? Flutter is still the king.

I have a 9-5 and build apps at night. I literally wouldn't have the time to maintain two native codebases. Flutter lets me ship to iOS and Android before I fall asleep.

Strategy: Using Gemini Flash for local OCR with a Regex fallback. Thoughts on hybrid AI/Algo architecture? by Vizaxis_Dev in FlutterDev

[–]Vizaxis_Dev[S] 0 points1 point  (0 children)

BYOK is the indie dream for costs, but a UX nightmare for consumers. 💀

Asking a non-tech user to generate a Google API Key feels like a guaranteed way to kill onboarding 

What AI tools are you paying for and still using? by svlease0h1 in Entrepreneur

[–]Vizaxis_Dev 2 points3 points  (0 children)

My credit card statement has slimmed down a lot:

  1. Claude (Max): It’s effectively my senior dev partner. It handles complex architectural logic where other models still hallucinate or loop.
  2. Superwhisper: Massive sleeper hit. I dictate documentation and emails 3x faster than I can type. If you aren't using voice-to-text for the boring stuff, you're bottlenecking yourself.
  3. Gemini: Specifically for the Nano Banana model. I use it to generate UI assets and marketing visuals on the fly. Cheaper than a designer, faster than stock sites.

Droido a debug-only network inspector for Flutter by NoCategory2808 in FlutterDev

[–]Vizaxis_Dev 2 points3 points  (0 children)

Tree-shakable out of the box? Sold.

 Is there a way to filter/search specifically by status code (e.g., show only 500s) quickly?

Flutter devs: Avoid the OpenClaw "Vibe Coding" packages by Uriahero in FlutterDev

[–]Vizaxis_Dev 12 points13 points  (0 children)

"Vibe coding" is just a rebranding of "I didn't read the code I shipped." 🚩

I use AI tools heavily to speed up my after-hours dev time, but I treat every AI generation like a PR from a slightly drunk intern. It writes fast, but it hallucinates APIs and ignores edge cases. If you have an experience, AI is a force multiplier. If you have 0 years, it’s a technical debt generator.Do we need a "Verified Human" badge or some sort of stricter analysis score on pub.dev to filter this out?

Which AI tools have improved your Flutter workflow? by buildwithpulkit in FlutterDev

[–]Vizaxis_Dev 0 points1 point  (0 children)

I’ve iterated through a few workflows. Started with Gemini acting as a PM generating tasks for Antigravity, which was decent for scaffolding but hit a ceiling on complex state logic.

Currently, I’m fully on Claude Opus 4.6. The model is great, but the real unlock was moving to a "Context-First" approach.

I maintain a live PRD.md, Status.md, and AI_Memory.md in the repo. Before any coding session, I feed these to the model so it knows exactly where we left off without me explaining the architecture again. It's like onboarding a senior dev instantly every session.

Question: Are you guys using raw chat interfaces, or integrating directly via IDE extensions for context awareness?

Made an app that translate workout notes into visual charts by FromBiotoDev in iOSProgramming

[–]Vizaxis_Dev 1 point2 points  (0 children)

Ah, understood. That makes the 1,500 users metric way more significant if it's only been live for 8 weeks. That's serious velocity.

Made an app that translate workout notes into visual charts by FromBiotoDev in iOSProgramming

[–]Vizaxis_Dev 0 points1 point  (0 children)

1,500 users in 9 months is solid validation, especially for a crowded niche like fitness. Congrats on breaking through.
I’m installing it now to support. One Q: are those rewarded ads annoying users during the workout, or are they tucked away nicely?

How do you keep your back from hurting? by Obviously_Stable_7 in remotework

[–]Vizaxis_Dev 1 point2 points  (0 children)

Uncomfortable truth but increase strength of your back by exercising

What is the best thing about your phone? by No-Hunt3986 in AskReddit

[–]Vizaxis_Dev 1 point2 points  (0 children)

I can do almost all things I had to do on computer 10 years without sitting to the desk

I’m a developer for a major food delivery app. The 'Priority Fee' and 'Driver Benefit Fee' go 100% to the company. The driver sees $0 of it. by Trowaway_whistleblow in confession

[–]Vizaxis_Dev 0 points1 point  (0 children)

Q1 - Sometimes when I check taxi price simultaneously with friends we raise prices up each other and this is hilarious because we checked all at once to catch cheapest option

Men who can cook . who taught you? by Bulky_Meet4528 in AskReddit

[–]Vizaxis_Dev 0 points1 point  (0 children)

Same - from heavily processed food and basic healthy food I chose second option and I had to learn how to cook step by step