Please use ng_bootstrap
Native Angular2 Dart directives for Bootstrap
Works with Bootstrap 3
1. Create a new angular2-dart app: https://angular.io/docs/dart/latest/quickstart.html
2. Add ng2_strap
to pubspect.yaml
:
dependencies:
...
ng2_strap: any
...
3. Add sass transformer:
dependencies:
...
sass: any
...
transformers:
- sass
you need to install sass previously
4. Add css stylesheet link to index.html
:
<head>
...
<link rel="stylesheet" href="packages/ng2_strap/styles/ng2_strap.css">
...
</head>
5. Add needed ng2_strap
directives to your components:
@Component(
...
directives: const [N2S_ACCORDION_DIRECTIVES])
http://dart-league.github.io/ng2_strap/
-
Popover
-
N2sTransclude - to transclude templates
-
positional service
Please read central ng2
modules readme for details, plans and approach and welcome :)
- support animation (in progress...)
- demo page
- docs