Thomas Burleson
Thomas Burleson
@wasserholz - Our SSR solution (with flex-layout) does use css classes, but the runtime version of the application uses inline-styling. The primary reason for inlining: inline-styles have the highest css...
@wasserholz - This issue will not be closed because it is worthy of investigation AFTER the 1.0 release.
Notice the [Flex-Layout Demo](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/demo-app/demo-routes.ts)s uses Routing also. When you route, if you specified a to-be-routed view that is declared in another module, then you must also [re-import the FlexLayoutModule](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/docs-layout/DemosLayoutAPI.ts#L49).
Try this Plunkr as a template starter: http://plnkr.co/edit/WzfbnAaRBxH8H67B5Di4?p=preview
Closing as invalid.
@spottedmahn - fxFlex applies `flex: 1 1 1e-09px;` as a style to the host element.
@phil294 - this is a good bug find! #### Issue The projected content has *FlexDirective* which instantiates & performs its `ngOnInit()` before the *LayoutDirective* (hosted on the parent of the...
This issue [here] reveals an instantiation and life-cycle issue between dependent components when used with content projection.
@robertmesserle - is this related to any changes you may have made ? @matsko - what are your thoughts here ?
Function callbacks are often **limiting** as we may actually need multiple callbacks: `notify()`, `error()`, `complete()`. RxJS introduced the idea of a Subscriber: an object that supports any or all of...