In the mobile world, often you need to show your user PDF files. Maybe these PDF files are used as reports (usually generated by some reporting tool on the remote server), as a statement about something that the user should do, which is in the form of a small book products catalog. So, how do we display a PDF deployed within the app, or downloaded from some remote server and stored locally? How do we do it on Android and iOS? This is the topic of this recipe.
Displaying PDF files in your app
Getting ready
Let's say we have to create an app that contains some PDF files. In this case, we don't download the files, we simply deliver them within the app. Later, we'll see how to download them from the network.
To...