nativescript-easy-notification-banner
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

EasyNotificationBanner

Banner notification for NativeScript.

Based on:

Sample iOS

Installation

tns plugin add nativescript-easy-notification-banner

Usage

import { Component, OnInit } from '@angular/core';
import { EasyNotificationBanner } from 'nativescript-easy-notification-banner';

@Component({
  selector: 'ad-main',
  template: '<page-router-outlet></page-router-outlet>'
})
export class AppComponent {
  private notificationBanner: EasyNotificationBanner;
  constructor() {
    this.notificationBanner = new EasyNotificationBanner();
  }

  ngOnInit(){
    this.notificationBanner.showSuccess('Celebrate!', 'A new version is available')
      .then(() => console.log('this is really easy!'))
    ;
   }
}

TODO

- [] allow custom design
- [] allow custom duration
- [] enable buttons inside the banner
- [] support android

Contributions are welcome! :)

Donate

bitcoin:1EAqBrcWKGS3VG1ktUxCje2E6hYTQRHRRV

donate

also greenaddress

License

Apache License Version 2.0, January 2004

Package Sidebar

Install

npm i nativescript-easy-notification-banner

Weekly Downloads

14

Version

1.1.0

License

Apache-2.0

Unpacked Size

25.3 kB

Total Files

18

Last publish

Collaborators

  • adriexnet