Waqti
Waqti copied to clipboard
Android app for a Kanban board time management system similar to Trello
I've been browsing around and have not yet seen a Kanban board system that has a proper Android app, which has been the key thing forcing me to stick with...
@basshelal Hi, I could only build Waqti when I uncommented unsplash [imports](https://github.com/basshelal/Waqti/blob/master/app/src/main/java/uk/whitecrescent/waqti/frontend/Waqti.kt#L11-L12) and [environment varibles](https://github.com/basshelal/Waqti/blob/master/app/src/main/java/uk/whitecrescent/waqti/frontend/Waqti.kt#L30-L35). I did register and get my own keys from unsplash.com, but to what file I...
To give the impression that the user is inside the board
Currently we create an `Observer` for each Task in the Cache, `Observer`s are somewhat memory expensive, and we run these every second or so, so if we have thousands of...
Even more customization!!! Allow users to change application font, we could possibly also allow for different fonts for each board, for example a cursive font for the personal board, a...
Allow for collapsible lists like this:  We would need to make `BoardView` allowed to have more than 1 type of ViewHolder but that should be relatively straight forward. We...
Make `BoardView` and `TaskListView` use a safer more reusable form of dragging. The current one works but is a bit of a mess and can be buggy at times
For some reason, Android doesn't like the `addToBackStack()` method, it loses a lot of functionality such as Transitions so we need to implement this manually ourselves, shouldn't take too long