Angular Material - Angular Material Switch - Angular Material Tutorial



What is Switch in Angular Material?

  • The md-switch, an Angular directives is used to show a switch.
  • learn angular material tutorials - seekbar

    learn angular material tutorials - seekbar Example

Attributes:

Sr.No Parameter & Description
1

* ng-model

The assignable angular expression to data-bind to.

2

name

The property name of the form under which the control is published.

3

ng-true-value

The value to which the expression should be set when selected.

4

ng-false-value

The value to which the expression should be set when not selected.

5

ng-change

The Angular expression to be executed when input changes due to user interaction with the input element.

6

ng-disabled

En/Disable based on the expression.

7

md-no-ink

The use of attribute indicates the use of ripple ink effects.

8

aria-label

This publishes the button label used by the screen-readers for accessibility. This defaults to the switch's text.

Example:

  • The following example showcases the use of md-swipe-* showcase uses of swipe components.
<html lang="en" >
   <head>
      <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js"></script>
	  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
      <script language="javascript">
          angular
            .module('firstApplication', ['ngMaterial'])
            .controller('switchController', switchController);

          function switchController ($scope) {
             $scope.data = {
                switch1: true,
				switch2: false,
				switch3: false,
				switch4: true,
                switch5: true,
                switch6: false
             };
             $scope.message = 'false';
             $scope.onChange = function(state) {
                $scope.message = state;
             };
          }	  
      </script>      
   </head>
   <body ng-app="firstApplication"> 
      <div id="switchContainer" ng-controller="switchController as ctrl" layout="column" ng-cloak>
         <md-switch ng-model="data.switch1" aria-label="Switch 1">
            Switch 1: {{ data.switch1 }}
         </md-switch>
         <md-switch ng-model="data.switch2" aria-label="Switch 2" ng-true-value="'true'" ng-false-value="'false'" class="md-warn">
            Switch 2 (md-warn): {{ data.switch2 }}
         </md-switch>
         <md-switch ng-disabled="true" aria-label="Disabled switch" ng-model="disabledModel">
            Switch 3 (Disabled)
         </md-switch>
         <md-switch ng-disabled="true" aria-label="Disabled active switch" ng-model="data.switch4">
            Switch 4 (Disabled, Active)
         </md-switch>
         <md-switch class="md-primary" md-no-ink aria-label="Switch No Ink" ng-model="data.switch5">
            Switch 5 (md-primary): No Ink
         </md-switch>
         <md-switch ng-model="data.switch6" aria-label="Switch 6" ng-change="onChange(data.switch6)">
            Switch 6 : {{ message }}
         </md-switch>    
      </div>
   </body>
</html>
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy angular material tutorial , angular 4 material , angular material2 , angular material example team


Output:


This tutorial provides most of the basics of all the below related informations such as angular material design , material design angular , angular material table , angularjs material , material angular , angular material icons , angular 2 material design , angular material template , angular materialize , angular material theme , angular material layout , material design angular 2 , angular material demo , angular material dialog , angular material form , angular material button , material angular 2 , angular material datepicker , angular material data table , angular material tutorial , angular material login form , material for angular 2 , angular material data grid , material ui angular , angular material calendar , angular material design table , angular material grid , google angular material , angular material components , angular 2 material ui , angular material autocomplete example , material ui angular 2 , angular material 2 demo , angular2 material demo , angular material template free , angular material design tutorial , angularjs material tutorial , material design for angular 2 , angular material tabs example , angular material ui , table angular material , angular material angular 2 , angular material layout align , what is angular material , angular material tabs , angular2 material example , angular 2 material tutorial , angular material login page , angular 2 material demo , angular material cdn , angular material design example , angularjs material design template , material angularjs , angular material grid list , angular material search bar , angular material vs bootstrap , angular material js , angular material range slider , angular material sidenav example , angular material form example , material angular icons , angular material datepicker example , angular material design icons , angular material design template , angular material bootstrap , materialize angular , angular material template free download , bootstrap material design angular , angular material table example

Related Searches to Angular Material Switch