Using Stream/Sink in Flutter

前端 未结 3 930
半阙折子戏
半阙折子戏 2021-02-10 11:22

I\'m trying to replace the increment flutter app code, by using Streams from Dart API without using scoped_model or rxdart.

So I read this and watched this,

3条回答
  •  花落未央
    2021-02-10 11:50

    don't know the restrictions on rx_dart, but I can only try to answer by you using it. lol

    your bloc doesnt define wht to listen in your input stream, this is how I could get it to work

    counter_bloc.dart

    import 'package:rxdart/rxdart.dart';
    import 'dart:async';
    
    class CounterBloc {
      int _count = 0;
    
      ReplaySubject _increment = ReplaySubject();
      Sink get increment => _increment;
    
      BehaviorSubject _countStream = BehaviorSubject(seedValue: 0);
      Stream get count => _countStream.stream;
    
      CounterBloc() {
        _increment.listen((increment) {
          _count += increment;
          _countStream.add(_count);
        });
      }
    }
    

    In the constructor the listen method is set for that stream. for each increment sent, it'll increment the counter and send the current count to another stream.

    In main.dart, removed the _counter property since that's now being handled by the BLOC. and to display I used a stream builder.

    also added a second fab, with a +2 increment to test the logic.

    hope this helps you model your bloc class. :)

    a good bloc reference: https://www.youtube.com/watch?v=PLHln7wHgPE

    main.dart

    import 'counter_bloc.dart';
    import 'package:flutter/material.dart';
    
    void main() => runApp(MyApp());
    
    class MyApp extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(
            primarySwatch: Colors.blue,
          ),
          home: MyHomePage(title: 'Flutter Demo Home Page'),
        );
      }
    }
    
    class MyHomePage extends StatefulWidget {
      MyHomePage({Key key, this.title}) : super(key: key);
    
      final String title;
    
      @override
      _MyHomePageState createState() => _MyHomePageState();
    }
    
    class _MyHomePageState extends State {
      CounterBloc bloc = CounterBloc();
    
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text(widget.title),
          ),
          body: Center(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Text(
                  'You have pushed the button this many times:',
                ),
                StreamBuilder(
                  stream: bloc.count,
                  initialData: 0,
                  builder: (BuildContext c, AsyncSnapshot data) {
                    return Text(
                      '${data.data}',
                      style: Theme.of(context).textTheme.display1,
                    );
                  },
                ),
              ],
            ),
          ),
          floatingActionButton: Row(
            mainAxisAlignment: MainAxisAlignment.end,
            children: [
              FloatingActionButton(
                onPressed: () {
                  bloc.increment.add(2);
                },
                tooltip: 'Increment 2',
                child: Text("+2"),
              ),
              FloatingActionButton(
                onPressed: () {
                  bloc.increment.add(1);
                },
                tooltip: 'Increment 1',
                child: Text("+1"),
              ),
            ],
          ), // This trailing comma makes auto-formatting nicer for build methods.
        );
      }
    }
    

提交回复
热议问题