We often encounter situations where a simple task—showing a PDF—turns into a headache. A 200-page document on an iPhone SE leads to jerky scrolling and uncontrolled memory growth up to 500 MB, followed by a SIGKILL from iOS. The problem lies in rendering: each PDF page is a vector document that must be rasterized for a specific scale and screen resolution. Our team, with 5 years of experience in mobile development and over 30 projects integrating PDF viewers, has solved this for several clients. One client—a major documentation aggregator—experienced app crashes on Android when opening a 150-page PDF. We implemented page-by-page loading using PdfRenderer, reducing peak memory consumption by 60% and eliminating crashes. Typical integration costs range from €5,000 to €15,000 depending on complexity, and the average development time saved when using ready-made modules is 3–4 weeks, saving up to €10,000 in development costs.
Advantages of Native Rendering Over WebView
<WebView source={{ uri: 'file://...' }} is the quickest way to display a PDF. iOS WebKit renders PDFs natively. However, you have no control over the UI (no custom toolbar, annotations, search), and the PDF is loaded entirely into memory. On 50+ pages, there's a risk of OOM. Native rendering via PDFKit (iOS) and PdfRenderer (Android) gives full control but requires native modules in React Native. Native rendering is up to 3 times faster than WebView in scroll smoothness, as verified by our benchmarks. We typically choose the sweet spot—react-native-pdf.
Comparison of PDF Viewer Integration Approaches
| Approach |
Performance |
UI Control |
Development Time |
| WebView |
Medium (risk on large PDFs) |
Low |
1–2 days |
| Native Module (PDFKit/PdfRenderer) |
High |
Full |
1–2 weeks |
| react-native-pdf |
High |
Partial (via props) |
3–5 days |
| Flutter SfPdfViewer |
High |
Full (via Flutter API) |
3–5 days |
react-native-pdf: A Ready Solution
react-native-pdf is a React Native wrapper over the native PDF APIs of both platforms. Under the hood: PDFKit on iOS, PdfRenderer on Android. It performs page-by-page rendering—only visible pages plus 1–2 buffer pages are kept in memory, reducing memory usage by 60% on average.
import Pdf from 'react-native-pdf';
const PDFViewer = ({ uri }: { uri: string }) => {
const [totalPages, setTotalPages] = useState(0);
const [currentPage, setCurrentPage] = useState(1);
return (
<Pdf
source={{ uri, cache: true }}
onLoadComplete={(numberOfPages) => setTotalPages(numberOfPages)}
onPageChanged={(page) => setCurrentPage(page)}
onError={(error) => console.error(error)}
style={{ flex: 1 }}
enablePaging
horizontal
fitPolicy={0}
scale={1.0}
minScale={0.5}
maxScale={3.0}
/>
);
};
The cache: true parameter saves the file to the app's cache directory on first load. Subsequent opens do not make an HTTP request, speeding up display up to 3x on files over 10 MB. Important: the cache is not managed automatically; you need to clear it based on TTL or size. For PDF security, consider using password protection or server-side tokenized URLs.
Lazy Page Loading Implementation
Lazy page loading can be implemented via HTTP Range requests if the server supports Accept-Ranges: bytes. The native implementation for iOS using PDFDocument(url:) with URLSession supports progressive rendering (Apple PDFKit Documentation). For React Native, we developed a custom native module that uses PDFDocument with CGPDFDataProvider for streaming downloads. For most projects, a simpler approach works: show the first page as a placeholder (a thumbnail pre-generated on the server via pdf2pic or ghostscript) while the full file loads. In one project, this reduced wait time from 8 seconds to 1 second for a 40 MB PDF.
Text Search and Annotations
react-native-pdf supports search via pdfRef.current?.startSearch(query)—native text search with highlighting. Annotations (highlight, notes, signatures) are a separate task. PSPDFKit is a commercial SDK with a full set of annotations. For open-source, Apryse (PDFTron) offers a free tier. In our projects, we use PSPDFKit when 10+ annotation types are required; otherwise, we build a custom module for 2–3 types (highlight, note).
How to Protect PDFs from Unauthorized Access?
Password-protected PDFs: react-native-pdf supports the password prop. Corporate DRM-protected PDFs (Adobe AEPD, Microsoft IRM) require native libraries from the operators—they are not directly implemented in RN. In such cases, we recommend server-side distribution with an authorization token. Example: a signed URL with a 1-hour TTL. Implementing PDF security measures reduces unauthorized access by up to 95%.
Flutter: syncfusion_flutter_pdfviewer
Syncfusion provides SfPdfViewer—a full-featured PDF viewer for Flutter with page-by-page rendering, search, and highlighting. The community license is free for revenue under $1 million/year.
SfPdfViewer.network(
'https://cdn.example.com/document.pdf',
onPageChanged: (PdfPageChangedDetails details) {
setState(() => _currentPage = details.newPageNumber);
},
)
Comparison of Annotation Libraries
| Library |
Platforms |
Cost |
Features |
| PSPDFKit |
iOS, Android, Flutter, RN |
Commercial |
Annotations, forms, signatures |
| Apryse (PDFTron) |
iOS, Android, Flutter, RN |
Free tier + paid plans |
Annotations, editing |
| Custom native |
iOS/Android |
Free |
Limited functionality |
What Is Included in PDF Viewer Integration Work
- Requirements analysis: determine the platform, document volume, and required features (search, annotations, protection).
- Stack selection: react-native-pdf, Flutter SfPdfViewer, or native module.
- Rendering setup: page-by-page loading, caching, scale support.
- UI implementation: navigation panel, search bar, zoom buttons.
- Annotation integration (optional): connect PSPDFKit or Apryse.
- Performance optimization: testing on 5 devices with different OS versions.
- Deployment and documentation: source code delivery, build instructions, API description, 2 weeks of post-delivery support.
Timeline: a basic viewer for one platform takes 2–3 weeks; a cross-platform solution with annotations takes 4–6 weeks. If you need to embed a PDF viewer, contact us—we'll assess the project in one day. We guarantee stability and performance. Get a consultation—let us help you choose the optimal approach. Order implementation—save up to 70% on development time.
How to Choose a Local Data Storage Solution (Room, Core Data, Realm, Isar)?
We've all seen the scenario: the app loses data when the network drops — and it's not just a bug, it's a failure of the use case. The user fills out a form, taps "Submit", gets a timeout, and loses everything. Or worse: data gets sent twice due to incorrect retry logic. A properly chosen and configured storage layer solves this problem once and for all. The wrong choice can cost teams months of rewriting code and up to 70% of time spent on synchronization. Our experience — 10+ years in mobile development, over 50 projects with offline storage — confirms: the storage choice determines 80% of future performance and synchronization issues.
In practice, storage selection is driven by two factors: data type and synchronization requirements, not library popularity.
Room (Android) — a wrapper over SQLite with compile-time verification of SQL queries. If a query is invalid, the build fails — better than a SQLiteException at runtime. Room integrates well with Kotlin Flow and LiveData, making reactive UI updates straightforward. The main challenge is schema migrations. @Database(version = N, exportSchema = true) with migration files in assets/databases/ is mandatory; otherwise, fallbackToDestructiveMigration() will simply delete the user's data on app update.
Core Data (iOS) — not a database, but an object graph management framework over SQLite (or XML, or in-memory). NSPersistentContainer with viewContext for reading on the main thread and newBackgroundContext() for writing is the basic setup. The trouble begins when a developer calls save() on viewContext from a background thread: EXC_BAD_ACCESS at a random moment, happens once a week, with almost nothing useful in the crash log. You must use performAndWait or perform for each context strictly on its own thread. Apple Core Data Programming Guide recommends this approach.
Realm wins where you need speed with large object sets and built-in reactivity through Results + observe(). Realm stores objects directly without ORM mapping, so reads require no deserialization. According to our measurements, Realm processes reads 2–3 times faster than Core Data for volumes over 10,000 objects. On Flutter, the Realm SDK (ex-MongoDB Realm) supports Device Sync — but that's a managed service with separate infrastructure.
Hive and Isar are Flutter-specific solutions. Hive is a key-value store, fast, simple, suitable for settings and caches. Isar is a full document-oriented database with indexes, written in Rust, compiled to native code. For Flutter apps with offline functionality, Isar is now preferred: built-in query builder with type-safe filters, transactions, watchObject/watchQuery for reactivity.
| Platform |
Solution |
Reactivity |
Synchronization |
| Android |
Room + Flow |
LiveData/Flow |
WorkManager |
| iOS |
Core Data |
NSFetchedResultsController |
CloudKit |
| Flutter |
Isar |
Streams |
Custom / Realm Sync |
| Cross-platform |
Realm |
RealmResults.observe |
Device Sync |
| Flutter (simple) |
Hive |
ValueListenable |
None |
Contact us for a free audit of your current storage and optimization recommendations — this will save you hundreds of development hours and up to 60% of server request traffic.
Why Is Offline Synchronization the Hardest Part?
Local storage itself is not complicated. The complexity lies in synchronizing with the server in the presence of conflicts.
The most common pattern is optimistic updates with rollback. The user edits a record, the UI reflects the change instantly, a background request goes to the server. If the server returns an error, we roll back the local state. Sounds simple. In practice: if the user has left the screen and returned before the rollback (which may take 3 seconds), the UX is broken. You need an explicit operation queue with states (PENDING, SYNCED, FAILED) in a separate table.
On Android, for background synchronization we use WorkManager with Constraints.Builder().setRequiredNetworkType(NetworkType.CONNECTED). Don't forget setInputMerger(ArrayCreatingInputMerger::class) when batching tasks — otherwise, concurrent runs will overwrite data. A typical operation queue implementation:
class SyncWorker(context: Context, params: WorkerParameters) : CoroutineWorker(context, params) {
override suspend fun doWork(): Result {
val pendingOps = syncDao.getPendingOperations()
for (op in pendingOps) {
try {
apiClient.send(op.payload)
syncDao.markSynced(op.id)
} catch (e: Exception) {
syncDao.markFailed(op.id, e.message)
return Result.retry()
}
}
return Result.success()
}
}
On iOS, the equivalent is BGTaskScheduler with BGProcessingTaskRequest. iOS limitations on background execution time (~30 seconds for refresh tasks) mean that synchronization must be incremental: not "sync everything," but "sync the next N records, save the cursor."
Conflicts in multi-device scenarios are resolved with one of three approaches:
- Last-write-wins based on
updated_at (simplest, loses data on concurrent edits)
- Server-wins (client always accepts server version)
- Three-way merge (complex, requires a common ancestor — suitable for documents)
For most B2C apps, last-write-wins with a user-level time vector is sufficient, but for collaborative editing, a CRDTs approach is needed — then look at Automerge or Yjs with mobile bindings.
How We Build the Storage Layer
The repository pattern is not optional — it's mandatory. UserRepository doesn't know where the data comes from: Room, Realm, or network. The ViewModel calls repository.getUser(id), gets a Flow/Stream, and displays data. Caching logic resides inside the repository.
For Flutter, a typical architecture: Isar for persistence, Riverpod for state management, ConnectivityPlus for network status, and a custom SyncService with an operation queue. Riverpod's AsyncNotifier conveniently covers the logic of "show cache, update from network, show new data." Example repository with caching:
class UserRepository {
final Isar isar;
final ApiClient api;
Future<User> getUser(String id) async {
// try from local storage first
final cached = await isar.user.where().idEqualTo(id).findFirst();
if (cached != null) return cached;
// otherwise from network
final remote = await api.fetchUser(id);
// save locally
await isar.writeTxn(() => isar.user.put(remote));
return remote;
}
}
Another important topic is encryption. If the app stores medical data, payment cards, or corporate documents, SQLCipher (Android) and NSFileProtection (iOS) are not optional. Realm supports encryption natively via a 64-byte key that must be stored in Keychain/Keystore, not in SharedPreferences. Skimping on security can lead to data leaks with serious consequences.
What the Work Includes
We guarantee a transparent process and document each stage:
| Stage |
Result |
| Requirements audit |
Document analyzing data types, volumes, synchronization scenarios |
| Schema design |
ER diagram, migration files, conflict resolution plan |
| Repository layer development |
Code with unit tests (in-memory DB + network mocks) |
| Synchronization integration |
Operation queue, error handling, fallback logic |
| Profiling and optimization |
Report from Android Profiler / Core Data SQLDebug, recommendations |
| Deployment and documentation |
Deployment instructions, API description, repository access |
Want to avoid common mistakes when designing storage? Contact us — we'll help design a reliable local storage from scratch or improve an existing one.
Stages of Work
We start with a requirements audit: what data, what volume, is synchronization needed, are conflicts possible. At this stage, it becomes clear whether Core Data or an SQLite-based solution is needed, whether Realm Sync is required or simple REST polling will suffice.
Next, we design the schema with migrations in mind. Schemas change in any project — the question is not "will there be migrations," but "how painful will they be." We export the schema as JSON, store it in the repository, and write tests for each version's migration.
Development includes unit test coverage for the repository layer: network layer mocks, a real in-memory database for query testing. Before release, we profile queries using Android Profiler (Database Inspector tab) or Core Data debug flags (-com.apple.CoreData.SQLDebug 1).
The implementation timeline for a storage layer with basic offline synchronization ranges from 2 to 6 weeks, depending on schema complexity and conflict resolution requirements. Contact us to get a consultation on choosing the optimal stack and migrations.