regex_router 0.0.2 copy "regex_router: ^0.0.2" to clipboard
regex_router: ^0.0.2 copied to clipboard

outdated

Material router with regex path support.

License

# state_graph_bloc_flutter

A companion package to [state_graph_bloc](https://pub.dev/packages/state_graph_bloc) package.

## Usage

### StreamSubscriptionBuilder

```dart
StreamSubscriptionBuilder(
    (context) => [
        bloc.anotherStream.listen((event) => event.use((data) => print("Stream data: $data"))),
    ],
    child: Text("Child"),
);
```

## Samples

You can experiment with sample application hosted here: https://gitlab.com/marcin.jelenski/bloc-showcase

Also `test` directory contains all State Graph Bloc use cases.