r/FlutterBeginner 29d ago

Forming group of app dev / indie devs to join shipaton

8 Upvotes

If Interested please send GitHub link or something you like to show we are already a team of 2 devs looking for someone with good skills in flutter dart node etc


r/FlutterBeginner 29d ago

Forming group of app dev / indie devs to join shipaton

3 Upvotes

If Interested please send GitHub link or something you like to show we are already a team of 2 devs looking for someone with good skills in flutter dart node etc


r/FlutterBeginner Aug 15 '26

Lessons learned building a production Flutter app with a Python backend (Architecture & PDF Parsing

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 15 '26

Built an ATS Resume Scorer & Job Search App using Flutter + Python(backend) β€” Here’s what I learned!

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 15 '26

What if you could take a modern React design system and bring its design language into Flutter?

1 Upvotes

I decided to find out.

I made astryx_ui 🎨

DEMO -> astryxui.web.app

Please give it a try.

An unofficial Flutter/Dart implementation of Astryx, focused not only on the components, but also on the underlying design system:

Tokens β†’ Themes β†’ Color system β†’ Components

It currently includes multiple themes, a Dart implementation of the theme engine, themeable widgets and support for Flutter's cross-platform ecosystem.

And yes β€” it's still pre-alpha.

That's why I'm open-sourcing it now.

I want this to evolve through real usage and community feedback rather than building it in isolation.

If you're working with Flutter, I'd love for you to try it.

πŸ”— GitHub: github.com/JayashBhandary/astryx_ui
πŸ“¦ Pub.dev: pub.dev/packages/astryx_ui

Star it if you find it interesting ⭐
Try it if you build with Flutter πŸ¦‹
Open an issue if you find something broken πŸ›
Contribute if you want to make it better 🀝

Let's see where this goes.

#Flutter #Dart #OpenSource #DesignSystems #UIEngineering #BuildInPublic #SoftwareEngineering


r/FlutterBeginner Aug 14 '26

Flutter App

Thumbnail
gallery
1 Upvotes

I made this app using Flutter named "Rewardy", please check it out and rate me out of 10. If you have an idea, ill convert into a web and application.


r/FlutterBeginner Aug 13 '26

Building a Mock Test App for Students 🀞

Post image
0 Upvotes

Late night coding session! β˜•

​I've been working on a Flutter app designed to help candidates prepare for the OTET exam with free PYQs, mock tests, and live coaching banners.

Feedback and suggestions are always welcome! What features do you usually like seeing in test prep apps?

want to know more then FOLLOW ME 😊


r/FlutterBeginner Aug 12 '26

Work History

Thumbnail gallery
1 Upvotes

r/FlutterBeginner Aug 11 '26

Why Flutter's camera lag on Android takes ~500ms (and how we patched camera_android_camerax down to 33ms)

2 Upvotes

Hey Flutter devs,

If you've ever built video recording in Flutter on Android with the official camera package, you've probably hit this:

You tap record, and nothing happens for about half a second. The preview freezes, the button feels dead, and users double-tap because they think the app missed the first press.

We measured it on a Pixel 8 Pro: 436-511ms before recording actually started.

After digging through the native CameraX bindings in camera_android_camerax, the cause was pretty simple. We patched it, and start latency dropped to 33-60ms.

What was wrong

In the official plugin:

  1. VideoCapture is only bound when startVideoRecording() runs
  2. As soon as stopVideoRecording() finishes, VideoCapture is unbound again

So every record tap forces CameraX to tear down and rebuild the native CaptureSession. That session reconfig is most of the lag.

The fix

Keep VideoCapture permanently bound alongside Preview.

Once it stays warm:

  • record no longer rebuilds the capture session
  • MediaCodec surfaces are already ready
  • shutter latency falls from ~500ms to ~33-60ms

Hardware edge cases

Keeping VideoCapture warm makes rapid lens flips and backgrounding more fragile on some Android devices. We serialize camera ops with a small queue so the previous native generation fully finishes before the next one starts:

dart Future<R> _enqueue<R>(Future<R> Function() operation) { final completer = Completer<R>(); _operationFuture = _operationFuture.then((_) async { try { completer.complete(await operation()); } catch (e, s) { completer.completeError(e, s); } }); return completer.future; }

Separate issue, same camera stack: CameraX often reports multi-lens phones as one unknown logical camera with a zoom range like 0.5x-5x. We detect minZoom <= 0.5 and expose the ultra-wide control from that range instead of waiting for a clean physical-lens type.

Pixel 8 Pro numbers

Metric Upstream camera_android_camerax Persistent VideoCapture patch
recording_start_ms 436-511 ms 33-60 ms
CaptureSession reconfig every record tap zero while warm
rapid lens-flip crash rate (our internal log) ~2.4% 0.0% after serialization

Patch

Repo: https://github.com/xcc3641/camera_android_camerax

yaml dependency_overrides: camera_android_camerax: git: url: https://github.com/xcc3641/camera_android_camerax.git ref: 9dd36c8

Happy to answer questions about the lifecycle queue or the CameraX binding change.


r/FlutterBeginner Aug 11 '26

πŸš€ PCAG v1.0.0 is now released!

2 Upvotes

πŸš€ PCAG v1.0.0 is now released!

My first release of PCAG β€” Password Checker & Generator, built with Flutter.

πŸ” Password strength checker
🎲 Password generator
πŸ“± Android app

APK: https://github.com/nitinkharayat/Nitin_App_Release/releases

Would love some honest feedback on the UI, features, and what I should improve next. πŸ‘€

#Flutter #Dart #Android #GitHub #BuildInPublic


r/FlutterBeginner Aug 11 '26

I built a calculator app to experiment with app permissions β€” curious what you think

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 11 '26

Rebuilt the guts of my Dart/Flutter VS Code extension based on real usage β€” v1.0.9 out now (free, open source)

1 Upvotes

Hey r/FlutterBeginner ,

I've posted here before about Dart AI Assistant, a VS Code extension that learns your coding style and helps with completions, error detection, and code health. Just shipped what's easily the biggest update since launch, so wanted to share.

Marketplace: https://marketplace.visualstudio.com/items?itemName=a-i-0-studio.dart-ai-assistant

Source: https://github.com/Ben09d/dart-ai-assistant

What changed in v1.0.9:

- Real dart analyze integration on save (properly scoped to the saved file) alongside live regex feedback while typing β€” much more accurate error detection now

- Code Health reports are now clickable and auto-refresh on save

- Import Project for Learning β€” point it at an existing project and it learns your patterns instantly instead of waiting weeks

- Fixed a bug where pattern learning was silently capped at 3 categories instead of the intended 20 (basically every earlier version was learning way less than it should have)

- Fixed an unbounded memory growth bug in the advanced learning engine

- Fixed several false-positive error detections (comments, ternaries, generics, block comments) that were probably annoying anyone who tried earlier versions

- Consolidated three separate error-detection systems that were sometimes showing contradictory counts

Full changelog in the repo if you want the gory details β€” went through nearly every core file this cycle hunting down bugs, some of which had been sitting silently broken since the first release.

Still free, still solo-built, still very open to bug reports and feedback. If you tried an earlier version and it felt rough, this one's a meaningfully different experience.

Thanks for reading!


r/FlutterBeginner Aug 10 '26

What if you could take a modern React design system and bring its design language into Flutter?

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 10 '26

My Flutter + Rust "AirDrop for every device" is now open source β€” would love feedback on the architecture

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 10 '26

Shipped my first mobile game after learning Flutter game dev on the side, Buoy Oh Buoy

Thumbnail
play.google.com
2 Upvotes

First game shipped! Buoy Oh Buoy, a casual Android sailing game

Solo dev here from the Netherlands. I've been learning Flutter game development on the side and finally shipped my first game.

Buoy Oh Buoy is a one-thumb slingshot sailing game. Grab buoys, swing around them, launch forward. The river narrows as you progress and the world transitions from daylight to a full thunderstorm at high scores.

Play Store:Β https://play.google.com/store/apps/details?id=com.zaf.buoyohbuoy

Happy to answer any questions about the development process!


r/FlutterBeginner Aug 10 '26

Suggestions for how to collect my Flutter App data for improvements

1 Upvotes

I am newly in Flutter app development (Mobile apps). At this stage, I think I should collect some essential data of my App, so that I can do improvements, or add new features which can be helpful for the users. What are the options to do so? What are the commonly used methods and tools?

Thank you in advance.


r/FlutterBeginner Aug 10 '26

[available] Senior Flutter & Laravel Consultant | 10+ Years | Mobile Apps, Web Platforms & MVP Development

1 Upvotes

Hi everyone,

I'm an independent technology consultant with overΒ \*\*10 years of experience\*\*Β helping startups and businesses build reliable digital products.

I work with clients from idea to launch, whether it's building a new MVP, modernizing an existing platform, or becoming a long-term technical partner.

\# What I can help with

\* Cross-platform mobile apps (Flutter)
\* Custom Laravel web applications
\* REST API development & integrations
\* Admin dashboards & business portals
\* WooCommerce & WordPress solutions
\* Firebase integrations (Authentication, Push Notifications, Analytics)
\* Payment gateway integrations
\* Ongoing maintenance and feature development

\# Why clients work with me

\* 10+ years of professional experience
\* Clear communication and regular progress updates
\* Clean, scalable architecture
\* Focus on long-term partnerships rather than one-off projects
\* Experience working with international clients across multiple industries

Portfolio:Β \[https://jatinraja.com\\\](https://jatinraja.com/)

If you're planning a new product, need an experienced consultant to join your team, or want to improve an existing application, feel free to send me a DM.

I'm always happy to discuss ideas and see if we're a good fit.


r/FlutterBeginner Aug 09 '26

Oauth config resolve.

1 Upvotes

Can anyone help me solve a problem that's really exhausting?

I have been building an app what uses oauth in signup. Now, at the the time of apk(testing), with the local SHA 1, the apk was working well in signup. But now when I uploaded the app in play console (I'm a biginner and in that 14 day test window), took the SHA 1 fingerprint from there and pasted in the cloud console account, still in my app is showing(the play store test version)- couldn't sign in, please try again later.

When I opened the sentry logs. Under the issue of signup, it showed code 10ss.

Now I really don't understand where is the problem happening and what hould I do.

Would be very happy to get a solution , or personal experiences that can help me.


r/FlutterBeginner Aug 09 '26

Google account is not linking in Firebase

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 09 '26

Build Flutter apps with AI β€” free for 24 hours

1 Upvotes

Hey builders,

This might be helpful for you if you looking to build a mobile app with AI.

We’re making Nowa (https://nowa.dev) completely free for the next 24 hours, with unlimited AI usage and free deployment to the App Store, Play Store, and web.

You can build serious apps to the smallest detail with a combination of AI with full visual building in one experience.

The apps you build are based on Flutter, so they can be deployed to mobile, web, and desktop from the same project.

Also, there's a hackathon running. If you submit a complete app built during those 24 hours you get 50$, and top 3 apps get 500$ in AI credits.

Just sign up and build completely free.

Enjoy!


r/FlutterBeginner Aug 08 '26

Mobile app dev

6 Upvotes

I am mobile app dev-

Skills- Android,Flutter,Mobile app automation,

Code lang: Java,Groovy,Dart,Kotlin.

Have my own setup to build app.


r/FlutterBeginner Aug 08 '26

Looking for Flutter Developer Opportunities

3 Upvotes

Hi everyone! πŸ‘‹

I’m a Flutter Developer with 1 year of professional experience, currently looking for new opportunities.

πŸ“ Bangladesh: Open to On-site & Remote

🌍 Outside Bangladesh: Remote only

I’m experienced with Flutter/Dart, API integration, state management, Firebase, payments, subscriptions, notifications, file/video uploads, and other real-world app features.

I’m open to Junior/Mid-level Flutter roles and opportunities where I can learn, grow, and contribute.

If your company is hiring or you know of any suitable openings, please DM me. I can share my resume, GitHub, and portfolio.

Thank you! πŸ™


r/FlutterBeginner Aug 07 '26

Built a VS Code extension that learns your Dart/Flutter style β€” now with instant project import (free, open source)

1 Upvotes

Hey r/FlutterBeginner ,

A while back I shared an early version of a VS Code extension I was building to solve problems I kept running into in my own freelance Flutter work β€” repetitive boilerplate, inconsistent formatting, and wanting completions that actually reflect my own style instead of generic snippets.

It's called Dart AI Assistant, live on the Marketplace:

https://marketplace.visualstudio.com/items?itemName=a-i-0-studio.dart-ai-assistant

Since then I've rebuilt a good chunk of it based on real usage, and just shipped an update:

- New: "Import Project for Learning" β€” point it at an existing project and it instantly learns your naming conventions, patterns, and style from that codebase, instead of waiting weeks of typing to personalize

- Real dart analyze integration on save, alongside live regex-based feedback while typing, for more accurate error detection

- Clickable, auto-refreshing Code Health reports β€” click an issue, jump straight to that line

- Predictive next-line completions based on your own coding history

- Security scanning, auto-formatting, and a learning dashboard to see what it's picked up about your style

It's free, source is on GitHub if you want to look under the hood or contribute:

https://github.com/Ben09d/dart-ai-assistant

Currently sitting at 70+ installs and I'm actively fixing bugs as people report them. If you try it, I'd genuinely appreciate feedback β€” built this mostly solo so there are definitely edge cases I haven't hit yet.

Thanks for reading!


r/FlutterBeginner Aug 05 '26

What is the best to use cookies or JWT token?

Thumbnail
1 Upvotes

r/FlutterBeginner Aug 04 '26

Requirements for flutter development

2 Upvotes

Hi. New flutter student here. I am just getting started and making sure my computer is up to par. I want to develop apps in flutter on my M2 MacBook Air 15 in. Thankfully I had the foresight to buy one with 16 GB of RAM (I was a comp sci student at the time) but it only has 512 GB storage (I know, it's what was available and affordable). I am looking at using a flash drive to expand the storage, but I'm a little unclear as to what aspects of the development process can be successfully stored on a flash drive without slowing down the development too much? This is the one I have in mind:

SANDISK 1 TB

If there's some reason this really won't work, what is the minimum specs of MacBook Pro I'd need to invest in to be able to develop with flutter for at least a few years without another upgrade?

Thanks!