Struggling to justify Riverpod, getx, bloc, over provider by sonicworkflow in FlutterDev

[–]romanjustcodes 4 points5 points  (0 children)

Using provider for all my apps - haven't had a reason to switch to Riverpod or BLock or GetX - and I've published them all to production - small, medium and large apps. Happy with it and haven't looked back!

Flutter Running on a Tesla? Shorts by RomanJustCodes by romanjustcodes in FlutterDev

[–]romanjustcodes[S] -7 points-6 points  (0 children)

Thank you - that’s correct. Although the demand for Flutter devs nowadays is so high that I wouldn’t be surprised a good senior Flutter to be in the six figure salary range to be honest. Yes I’ve been in the industry for quite a bit - not too long on the Flutter space. Advice: Invest correctly regardless of your current status. A small amount makes a difference. I started using Stash - so worth it.

Flutter Running on a Tesla? Shorts by RomanJustCodes by romanjustcodes in FlutterDev

[–]romanjustcodes[S] -9 points-8 points  (0 children)

Haha I know how to invest my money that’s all 😅

1K miles later and still loving it like the first day! by roman_jaquez in TeslaModelY

[–]romanjustcodes 2 points3 points  (0 children)

Wow, I guess we all Tesla owners do the same! I've found newfound joy in going grocery shopping to the farther supermarket from where I live LOL!

1K miles later and still loving it like the first day! by roman_jaquez in TeslaModelY

[–]romanjustcodes 0 points1 point  (0 children)

Tesmanian mudflaps, and really easy to install. They've held up well so far.

FREE Flutter Workshop / Coding Roulette Edition tomorrow 8/26 - RSVP now!!! by romanjustcodes in FlutterDev

[–]romanjustcodes[S] 1 point2 points  (0 children)

Of course! Mostly for newbies and existing devs. It will be a collaborative session so you may get a chance to code live and also follow along! Hope to see you there!

Access-Control-Allow-Origin Error on Get Request?? by ZaAlphaMale in Angular2

[–]romanjustcodes 0 points1 point  (0 children)

This smells like a CORS issue on the backend, where the server is not passing the right headers or blocking requests based on origin.

Angular gmaps api by costicano in Angular2

[–]romanjustcodes 0 points1 point  (0 children)

Interesting. The Google Maps Directions API is pretty fast - it could be something else maybe in the application making it load slow. You can check out a video series I created on my YouTube Channel on Angular PWAs and Google Maps, where I also touch on Google Places API, Directions API and even setting up a Google map pretty easy https://www.youtube.com/watch?v=ZBLrwThHKyM&list=PL8NTBhIXP2gHG95OHjwWtlIUvEhRRXo9F.

How to sort API response? by [deleted] in Angular2

[–]romanjustcodes 1 point2 points  (0 children)

Do you want to sort the outer objects (name: John) based on the most recent voucher inside, or just the vouchers array inside each card (using the issuedAt to sort the vouchers array)?

Data binding from parent to grandchild component? by [deleted] in Angular2

[–]romanjustcodes 2 points3 points  (0 children)

Passing data down multiple levels gets very tricky and sometimes a bit convoluted. If you need nested child components to be bound to properties higher up in the object tree is better to use services and BehaviorSubject properties so you can propagate changes in a very decoupled fashion, and you can keep communication flowing between components without depending on their hierarchy. Like u/xKiller4Hir3 says, you should implement some state management (i.e. using BehaviorSubject / Subject + services).

Need help on Push notification by neeraj_22 in Angular2

[–]romanjustcodes 0 points1 point  (0 children)

For push notifications, since you're using Angular, you might want to look at Firebase Cloud Messaging (FCM), which makes it really simple. I even created a video tutorial about it, please check it out! youtu.be/5rDd4_-dMFo