MyNotes
MyNotes copied to clipboard
📝 A demo todo/notes app which demonstrates the use of MVVM architecture with Test-cases, Navigation Component Library, Room Database, LiveData, Coroutines, Datastore etc.
The App has single activity (`MainActivity`) and this activity's action bar is used for both the fragments which are inflated inside it. The task is to implement action bar for...
Add an Undo Action in The Snackbar which is displayed when a task is deleted to revert the action
The styling of Shown Tasks is very basic, improve it by changing the delete icon style, font style etc.
After adding a couple of entries, while applying "Sort By Deadline", the application gets crashes.
## Why is it necessary to provide a dependency for `CoroutineDispatcher` instances using a `DispatchersProvider` class, rather than directly inserting the instances into the components that use them? - You...