this post was submitted on 02 Nov 2023
4 points (75.0% liked)
General Programming Discussion
7806 readers
3 users here now
A general programming discussion community.
Rules:
- Be civil.
- Please start discussions that spark conversation
Other communities
Systems
Functional Programming
Also related
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Not a mobile dev, but have utilized Flutter quite a bit at work for web development. You can have a shared codebase between mobile and web, just changing a few options when compiling to create different versions. No need for different UI/UX code if you don't mind having a web version which would really be best suited for a touch based platform.
To keep things simple, I'd suggest using a Provider approach rather than something like BLoC - we used BLoC for a while at the office and it ended up being a headache.
Thanks very much. I am leaning that way, from what I've seen.
ETA: Just looked at BLoC vs Provider and...yeah. I think that Provider would be the right choice - scope for what I'm contemplating would be intentionally very limited so, no need to add that further complexity.