#Demo
[http://vladb95.github.io/angular-autocomplete/]
$ bower install angular-materialize-autocomplete###script.js
angular.module('demoApp',['auto-complete']);
angular.module('demoApp').controller('demoCtrl',demoController);
demoController.$inject=['$scope'];
function demoController($scope){
$scope.input='';
$scope.data=["john", "bill", "charlie", "robert", "alban",
"oscar", "marie", "celine", "brad", "drew", "rebecca",
"michel", "francis", "jean", "paul", "pierre", "nicolas", "alfred"];
$scope.color='#00BCD4';
}###index.html
<auto-complete-input auto-data="data" ac-title="'Choose employee'" color="color" input-model="input"></auto-complete-input>