Thanks @roblauer, I have implemented the nativescript-pdf-view plugin with my project by this morning.
Here i have shared some code, It may help someone!
Nativescript with Angular
Preview from Local storage using FileSystem
Here I am having one separate modal page for managing all previews.
Preview.html
<StackLayout *ngIf="pdfpreview" rows="auto, *, auto, auto, auto">
<Label width="50%" row="0" text="Report Type : Certs" color="black"></Label>
<FlexboxLayout height="85%" row="1" flexDirection="column">
<pdf:PDFView flexGrow="1" src="{{ pdfpath }}"></pdf:PDFView>
</FlexboxLayout>
<Label row="2" text="Comments" color="black"></Label>
<TextView row="3" editable="false"></TextView>
<Button row="4" width="30%" class="btn btn-primary btn-rounded-sm" text="Close" (tap)="submit()"></Button>
</StackLayout>
Preview.ts
case "pdf":
// fetch filename from controller using app settings
filename = this.attachedfilename;
var afile: File;
var afolder: Folder;
var afoldername: string;
var afilename: string;
//fetch path
afoldername = fs.path.join(documents.path, "Pdf Details", filename);
console.log("pdf folder path : " + afoldername);
//set the pdf
this.pdfpath = afoldername;
//set the scope
this.pdfpreview = true;
break;