Skip to content
No description, website, or topics provided.
TypeScript Shell JavaScript
Branch: master
Clone or download
Latest commit 42b1225 Mar 23, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
demo
publish
src fixed issues Mar 23, 2019
.gitignore
.travis.yml
LICENSE
README.md
tslint.json

README.md

Block UI apple android

Support

Support Android & iOS.

Installation

tns plugin add nativescript-block-ui

Usage

import { BlockUI } from "nativescript-block-ui";

export class Block {

    private blockUI: BlockUI;

    constructor() {
        this.blockUI = new BlockUI();
    }

    public lock() {
        this.blockUI.lock();
    }

    public unlock() {
        this.blockUI.unlock();
    }
}

License

Apache License Version 2.0, January 2004

You can’t perform that action at this time.