mangayomi/lib/utils/extensions/stream.dart
2024-12-14 12:38:56 +02:00

7 lines
250 B
Dart

import 'package:flutter/material.dart';
extension StreamBuilderExtension<T> on Stream<T> {
StreamBuilder<T> toStreamBuilder(Widget Function(BuildContext, AsyncSnapshot<T>) builder) {
return StreamBuilder(stream: this, builder: builder);
}
}