Skip to content

Instantly share code, notes, and snippets.

@leonsenft
Created July 21, 2017 18:27
Show Gist options
  • Save leonsenft/13f4c576cae52b5efb85090a20d48dda to your computer and use it in GitHub Desktop.
Save leonsenft/13f4c576cae52b5efb85090a20d48dda to your computer and use it in GitHub Desktop.
import 'package:angular/angular.dart';
abstract class HasTabIndex {
bool get disabled;
@HostBinding('tabindex')
String get tabIndex => disabled ? null : '0';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment