A way to keep the user informed about what happens in your application
tns plugin add nativescript-easy-notification-banner
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!'))
;
}
}
- [] allow custom design
- [] allow custom duration
- [] enable buttons inside the banner
- [] support for banner position (RMessagePositionTop, RMessagePositionNavBarOverlay, RMessagePositionBottom)
Contributions are welcome! :)
bitcoin:1EAqBrcWKGS3VG1ktUxCje2E6hYTQRHRRV
also greenaddress
Apache License Version 2.0, January 2004