Hello Instructor Wondering how to get more 5-star reviews for your course? I’ve got some strategies that can help boost your course’s visibility and credibility through better reviews.
@MobileAcademys I like your content I hope you create series on MVVM and best practices. Also I've a question Is there any best approach which can be applied on all scale projects Either it is small scale medium or large scale project. I'm confused why everything is so scattered here. Can't we define perfect rules that can help in each project and everyone can follow it so that if other dev join he can continue easily.
Hi Richard, its Itunu from FHG Company, We are reaching out to you based on your course in Udemy. We have some suggestions, we would love to give you, which would be useful for your course. We are looking forward to your response.
Hello We're reaching out to discuss about ways to advertise your Udemy course. There are effective strategies to increase awareness and grow your audience using your knowledge and the value of the course. Let's discuss on how I can help you maximize the impact of your course.
Thanks for sharing, how to do that with Dynamic Feat. Module and using subcomponent? I mean, sharing the viewmodel only for the same DFM scope instead of broader scope like activity?
@06:21: because of the nature of providers, it's possible that you'll miss some of the stream items, particularly if two items have both come in during a single drawing frame. If you need to absolutely have every value, aggregate your own list in whatever code is watching the stream directly, before it ends up as part of a provider, which forces the value to always be "the latest".
I think you gloss over a bit what passing multiple parameters means to a provider. You are identifying one of many providers that share the same methods and definition, but differ in an ID. All of those parameters are collectively making up the uniquely identifying "family key". Too many people try to use them to "initialize" a provider, then don't realize that they have to provide that exact same parameter to access the provider again later.
at @06:02: if you have riverpod_lint installed, you get a codefix assist lightbulb that handles many common conversions, like to a ConsumerWidget or to a ConsumerStatefulWidget.
At 19:30, you could have just thrown an error to more directly simulate what happens when something below you blows up. It'd work about the same, but most people don't create deliberate Future.error objects.
Avoid legacy riverpod tools. In brief, avoid legacy ChangeNotifier, StateNotifier (and their providers) and StateProvider. Use only Provider, FutureProvider, StreamProvider, and Notifier, AsyncNotifier, StreamNotifier (and their providers). In other words, please stop using StateProvider, as shown in this video.
@MobileAcademys no worries, do you plan to share the source code though? This video was very helpful and it would be great if I could look at the source code for further understanding.
Hey, can you help me with something? Instead of using StatefulShellRoute for a page with bottom navigation, what if I use that route and set the other pages of the bottom navigation as subroutes? I want to understand the possible outcomes. Will it cause any impact on the app, or will it work the same way?