A notes app is a versatile and essential tool for anyone looking to organize and capture their thoughts, ideas, and information on the go. It serves as a digital notepad, allowing users to jot down text, create to-do lists, and store important information for quick and easy reference.
- Light/dark mode toggle
- Live previews
- Language English/Hindi
- Multicolor Note pin
- Room Database
- Room Live Data
- MVVM Architecture
- Material3 Design
// Room library
implementation "androidx.room:room-runtime:2.6.0" // Use the latest version
// Room database driver for SQLite
implementation "androidx.room:room-rxjava2:2.6.0" // Use the latest version
// Room annotation processor
annotationProcessor "androidx.room:room-compiler:2.6.0" // Use the latest version
def lifecycle_version = "2.2.0"
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version"