avidraghav / MyNotes

📝 A demo todo/notes app which demonstrates the use of MVVM architecture with Test-cases, Navigation Component Library, Room Database, LiveData, Coroutines, Datastore etc.
Apache License 2.0
126 stars 26 forks source link

Replace Toast with Snackbar #30

Closed avidraghav closed 2 years ago

avidraghav commented 2 years ago

Currently the Toast messages are implemented in such a way that if multiple toast requests are made the previous toast gets cancelled and the latest toast is showed. (One toast message is shown at a time).

Check File ToastUtils This implementation is causing a Memory leak, this implementation needs to be updated or replaced with an implementation of SnackBar.

avidraghav commented 2 years ago

fixed by #29