Skip to content

Instantly share code, notes, and snippets.

@leonsenft
Last active July 22, 2017 00:08
Show Gist options
  • Save leonsenft/6e486bc73d4238e273a5decfa977d012 to your computer and use it in GitHub Desktop.
Save leonsenft/6e486bc73d4238e273a5decfa977d012 to your computer and use it in GitHub Desktop.
Button component leveraging metadata inheritance.
import 'package:angular/angular.dart';
import 'my_button_directive.dart';
@Component(
selector: 'my-button',
template: '<ng-content></ng-content>',
)
class MyButtonComponent extends MyButtonDirective {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment