Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nativescript-community/ui-material-switch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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.