ow do I use the materialkit switch on and off in a case statement or in a if-else statement for a function?

98 Views Asked by At

How do I use the materialkit switch on and off in a case statement or in a if-else statement for a function? It seems that the UIcontrol and Material Kit has two different syntax.

1

There are 1 best solutions below

0
On BEST ANSWER

For Material, it is like this.

let materialSwitch = MaterialSwitch()

if .On == materialSwitch.switchState {
    // Do something
} else {
   // Do something else....
}