UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

14 lines (9 loc) 252 B
angular.module('checkboxDemo1', ['ngMaterial']) .controller('AppCtrl', function($scope) { $scope.data = {}; $scope.data.cb1 = true; $scope.data.cb2 = false; $scope.data.cb3 = false; $scope.data.cb4 = false; $scope.data.cb5 = false; });