Skip to content

Commit

Permalink
minor formatting/documentation updates + angular_bloc v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Nov 5, 2018
1 parent b8b9895 commit 1f47aad
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ The goal of this package is to make it easy to separate _presentation_ from _bus

- [Simple Counter Example](https://github.com/felangel/Bloc/tree/master/packages/flutter_bloc/example) - an example of how to create a `CounterBloc` to implement the classic Flutter Counter app.
- [Login Flow Example](https://github.com/felangel/Bloc/tree/master/examples/flutter_login) - an example of how to use the `bloc` and `flutter_bloc` packages to implement a Login Flow.
- [AngularDart Counter Example](https://github.com/felangel/Bloc/tree/master/examples/angular_counter) - an example of how to use a `CounterBloc` in an AngularDart app.

### Web
- [Counter Example](https://github.com/felangel/Bloc/tree/master/examples/angular_counter) - an example of how to use a `CounterBloc` in an AngularDart app.

## Articles

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export 'authentication_bloc.dart';
export 'authentication_event.dart';
export 'authentication_state.dart';
export 'authentication_state.dart';
2 changes: 1 addition & 1 deletion examples/flutter_login/lib/home/home.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export 'home_page.dart';
export 'home_page.dart';
2 changes: 1 addition & 1 deletion examples/flutter_login/lib/splash/splash.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export 'splash_page.dart';
export 'splash_page.dart';
4 changes: 2 additions & 2 deletions packages/angular_bloc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Lets take a look at how to use `BlocPipe` to hook up a `CounterPage` html templa

counter_page_component.html
```html
<div class="counter-page-container">
<div class="counter-page-container">
<h1>Counter App</h1>
<h2>Current Count: {{ counterBloc | bloc }}</h2>
<material-fab class="counter-fab-button" (trigger)="increment()">+</material-fab>
Expand Down Expand Up @@ -77,7 +77,7 @@ At this point we have sucessfully separated our presentational layer from our bu

## Examples

- [Simple Counter Example](https://github.com/felangel/Bloc/tree/master/packages/angular_bloc/example) - an complete example of how to create a `CounterBloc` and hook it up to an AngularDart app.
- [Simple Counter Example](https://github.com/felangel/Bloc/tree/master/packages/angular_bloc/example) - a complete example of how to create a `CounterBloc` and hook it up to an AngularDart app.

### Contributors

Expand Down
File renamed without changes.

0 comments on commit 1f47aad

Please sign in to comment.