Flutter Guideline: Async — Use StreamBuilder. Description: Stream UI building. Do: StreamBuilder for streams. Don't: Manual stream subscription. Good Example: StreamBuilder(stream: myStream). Bad Example: stream.listen in initState. Severity: Medium. Docs: https://api.flutter.dev/flutter/widgets/StreamBuilder-class.html.