JSPM

  • Created
  • Published
  • Downloads 314
  • Score
    100M100P100Q97502F
  • License Apache-2.0

Material Switch

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.

    npm npm

    Contents

    1. Installation
    2. Changelog
    3. FAQ
    4. Usage
    5. API

    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.