NativeScript plugin to open and read ePub files natively. Currently only supported on iOS.
npm install nativescript-pdf- Place your
epubfiles in yourApp_Resources/iOSdirectory. - Import
EPubReaderin your page and open the file.
import {Observable} from 'data/observable';
import {EPubReader} from 'nativescript-epub';
export class HelloWorldModel extends Observable {
constructor() {
super();
let epubReader = new EPubReader();
epubReader.open('book');
}
}
