A simple .NET MAUI app demonstrating how to use SQLite for local data storage.
This app lets you:
- Add text notes
- Save them locally using SQLite
- Automatically persist notes between app restarts
Perfect for learning basic CRUD operations with SQLite in .NET MAUI.
- .NET MAUI
- C#
- SQLite-net-pcl
- SQLitePCLRaw.bundle_green
SQLiteTutorials1/ ├── Data/ │ └── DatabaseService.cs # Handles SQLite connection & CRUD operations ├── Models/ │ └── Note.cs # SQLite table model ├── MainPage.xaml # UI layout ├── MainPage.xaml.cs # UI logic for saving & displaying notes ├── App.xaml.cs # Initializes the database └── README.md
Edit notes
Delete notes
Add categories
Cloud sync (using REST API)