Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anuj-thakur-513/task-list-app
A ToDo list app available on playstore which has different functionalities. You can set the priority of tasks and search for a specific task in your task list.
https://github.com/anuj-thakur-513/task-list-app
android android-application kotlin kotlin-android navigation-component playstore room-database room-persistence-library
Last synced: about 2 months ago
JSON representation
A ToDo list app available on playstore which has different functionalities. You can set the priority of tasks and search for a specific task in your task list.
- Host: GitHub
- URL: https://github.com/anuj-thakur-513/task-list-app
- Owner: anuj-thakur-513
- License: mit
- Created: 2022-08-01T19:03:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-26T10:54:11.000Z (over 2 years ago)
- Last Synced: 2023-03-08T18:22:10.092Z (almost 2 years ago)
- Topics: android, android-application, kotlin, kotlin-android, navigation-component, playstore, room-database, room-persistence-library
- Language: Kotlin
- Homepage: https://play.google.com/store/apps/details?id=com.project.tasklist
- Size: 4.04 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
README
# Task List
A clean, modern and material UI Task list app available on playstore which has different functionalities.
You can set the priority of tasks and search for a specific task in your task list. Swipe left to
delete the tasks. Search across your tasks. Sort according to your priority.## Demo
![Demo](https://media4.giphy.com/media/WRucPNhn0732e1p5lh/giphy.gif?cid=790b76111840860e1bf486af63048f57935f1279ab590936&rid=giphy.gif&ct=g)
## Dependency
**Step 1: Add the following dependencies to your root build.gradle file**
```dependency
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.1"
}
```**Step 2: Add the following dependencies to your module's build.gradle file**
**1. Navigation Components:**
```dependency
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.1'
```
**2. Room Components:**```dependency
implementation 'androidx.room:room-runtime:2.4.3'
kapt 'androidx.room:room-compiler:2.4.3'
implementation 'androidx.room:room-ktx:2.4.3'
androidTestImplementation 'androidx.room:room-testing:2.4.3'
```
**3. Lifecycle Components:**```dependency
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-common-java8:2.5.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
```
**4. Kotlin Components:**```dependency
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10'
api 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1'
```
**5. Recycler View Animations:**
```dependency
implementation 'jp.wasabeef:recyclerview-animators:4.0.2'
```
**Step 3: Apply plugins to your module's build.gradle file**
```dependency
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
id 'androidx.navigation.safeargs.kotlin'
}
```## Documentation
[Room Documentation](https://developer.android.com/training/data-storage/room)
## License
[MIT](https://github.com/anuj-thakur-513/Task-List-App/blob/main/License)
## Authors
- [@anuj-thakur-513](https://www.github.com/anuj-thakur-513)