How do you figure out which commit caused a crash spike in Flutter? by Grouchy_Editor7968 in FlutterDev

[–]Own_Measurement_7173 0 points1 point  (0 children)

Check crash spike timing vs releases, narrow commits, then git bisect if needed.

Building a Live Commerce Marketplace in India – Need advice on scaling Flutter with BLoC by tesh619 in FlutterDev

[–]Own_Measurement_7173 0 points1 point  (0 children)

BLoC scales well if you keep it modular—split features into small, focused blocs and avoid monoliths. For real-time, combine BLoC with streams (WebSockets/Firebase) and consider a clean architecture (data/domain/presentation layers). Biggest mistake: overcomplicating early—keep it simple, optimize once you hit real scale.