npm i --save @nativescript-community/ui-material-switch
- Version: 7.2.67
- GitHub: https://github.com/nativescript-community/ui-material-components/tree/master
- NPM: https://www.npmjs.com/package/%40nativescript-community%2Fui-material-switch
- Downloads:
- Last Day: 30
- Last Week: 128
- Last Month: 517
NativeScript Material Switch
Material Design's Switch component for NativeScript.
Contents
Installation
For NativeScript 7.0+
tns plugin add @nativescript-community/ui-material-switch
For NativeScript 6.x
tns plugin add nativescript-material-switch
Be sure to run a new build after adding plugins to avoid any issues.
Changelog
FAQ
Usage
Plain NativeScript
IMPORTANT: Make sure you include xmlns:mdp="@nativescript-community/ui-material-progress"
on the Page element
XML
<Page xmlns:mdp="@nativescript-community/ui-material-switch">
<StackLayout horizontalAlignment="center">
<mdp:Switch />
</StackLayout>
</Page>
CSS
mdswitch{
ripple-color: blue;
elevation: 4;
}
NativeScript + Angular
import { NativeScriptMaterialSwitchModule } from "@nativescript-community/ui-material-switch/angular";
@NgModule({
imports: [
NativeScriptMaterialSwitchModule,
...
],
...
})
<MDSwitch v-model="value"></MDSwitch>
NativeScript + Vue
import SwitchPlugin from '@nativescript-community/ui-material-switch/vue';
Vue.use(SwitchPlugin);
<MDSwitch></MDSwitch>
API
Attributes
Inherits from NativeScript Switch so it already has all the same attributes.