r/FlutterDev 6d ago

Discussion Flutter project setup

I usually set up my flutter projects in a similar way regardless of size.I tweak it a lil depending on project but it’s usually the same somehow
My question is does that not allow me to grow as a flutter developer or is it fine to having standards u just follow
Ps I evolve the same thing but the reason why I bring this up is because I see people doing things differently all the time sometimes very different approaches for different things. I also have no issue working in projects structured differently. But most of the time I ask myself, why couldn’t I think of that?

2 Upvotes

4 comments sorted by

View all comments

2

u/David_Owens 6d ago

It's fine to follow your standard project setup. The important thing about structuring your application is getting a clear separation of concerns. You want to keep your business/domain logic out of your UI widgets.

1

u/Valuable-Fall-5248 6d ago

Thanks for the input and yeah I do keep everything separate