This switch is derived from webcat12345/ngx-ui-switch, which was itself derived from yuyang041060120/angular2-ui-switch, which is a dead repo. This is temporarily published so it can be properly npm installed but I will deprecate and redirect this package once the appropriate fixes & changes have been back PR'd into the common repo. Thanks guys for your amazingly hard work.
This is a simple iOS 7 style switch component for Angular4.
Inspired by switchery - in angular4.
npm install ngx-toggle-switch --save
import { UiSwitchModule } from 'ngx-toggle-switch/src'
import { AppComponent } from './app.component';
@NgModule({
imports: [BrowserModule, FormsModule, UiSwitchModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {
}
<ui-switch></ui-switch>
<ui-switch [(ngModel)]="enable"></ui-switch>
type: boolean
default: false
<ui-switch checked></ui-switch>
<ui-switch [checked]="false"></ui-switch>
type: boolean
default: false
<ui-switch disabled></ui-switch>
<ui-switch checked [disabled]="true"></ui-switch>
type: event
default: noop
<ui-switch (change)="onChange($event)"></ui-switch>
type: string
default: medium
<ui-switch size="small"></ui-switch>
<ui-switch size="large"></ui-switch>
type: boolean
default: false
<ui-switch reverse></ui-switch>
type: string
default: rgb(100, 189, 99)
<ui-switch color="red"></ui-switch>
type: string
default: #fff
<ui-switch switchColor="#fcfcfc"></ui-switch>
type: string
default: #fff
<ui-switch defaultBgColor="red"></ui-switch>
type: string
default: #dfdfdf
<ui-switch defaultBgColor="black"></ui-switch>
<ui-switch labelOn="Yes" labelOff="No"></ui-switch>
MIT