flutter-stream-widget
Installation
SKILL.md
Flutter Stream Widget
Work with streams directly in the build method of a Flutter widget:
import 'dart:async';
import 'package:flutter/widgets.dart';
abstract class StreamWidget extends StatefulWidget {
const StreamWidget({Key? key}) : super(key: key);
Stream<Widget> build(BuildContext context);
void initState() {}
void dispose() {}