This is a React Native Todo application that implements offline-first architecture using WatermelonDB. The app works seamlessly both online and offline, with automatic synchronization when connectivity is restored.

Offline-first is an architecture pattern where the application is designed to work primarily offline, with synchronization as a secondary concern. Key benefits include:
- Works without internet connection
- Instant response to user actions
- Automatic background synchronization
- Conflict resolution
- Better user experience in poor network conditions
WatermelonDB is a powerful local database for React Native applications that provides:
- SQLite-based storage
- Observable queries
- Offline-first architecture
- TypeScript support
- Automatic synchronization capabilities