I want my navigation items to be animated when i change the navigation, hence am using 'ng-animate', but no effect is being applied.
Here is my code,
HTML:
<md-list-item class="md-3-line" ng-animate="'animate'" ng-repeat="widget in Widgets | filter : selected">
<div layout="row" layout-margin>
<div flex="60">
<img ng-src="{{widget.icon}}" class="md-avatar" alt="{{widget.title}}">
<div class="md-list-item-text">
<h4>{{ widget.title }}</h4>
<h5>{{ widget.Description }}</h5>
</div>
</div>
<div flex="20">
<md-button style="width:100px" class="md-raised">Add</md-button>
</div>
</div>
Here is the Plunker
for the issue