FlutterRxBus icon indicating copy to clipboard operation
FlutterRxBus copied to clipboard

A Flutter EventBus using RxDart

Results 2 FlutterRxBus issues
Sort by recently updated
recently updated
newest added

``` dependencies: flutter: sdk: flutter flutter_bloc: ^0.19.0 chopper: ^2.4.2 built_value: ^6.7.0 kiwi: ^0.2.0 shared_preferences: ^0.5.3+4 url_launcher: ^5.1.1 event_bus: ^1.1.0 flutter_sms: ^1.0.1 rxdart: ^0.22.0 rxbus: ^0.0.2` ``` After adding rxbus I...

static void destroy({tag}) { _list.forEach((rxBus) { if (tag != null && tag != _DEFAULT_IDENTIFIER && rxBus.tag == tag) { rxBus.subject.close(); _list.remove(rxBus); } else if ((tag == null || tag ==...